public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Revert ExampleGroup changes as they were causing failing specs

  Revert "Added render(template_path) feature to view specs."
  This reverts commit cb956ab7bb2de23752b600116e12f5c4cd63dd80.

  Revert "RSpec ExampleGroups for Merb controllers, views, helpers, models and
  routes."
  This reverts commit 15abc4e56f1675c04414a5dce902baeee8453cd7.
ivey (author)
Tue Mar 25 23:00:21 -0700 2008
commit  6867c0b8c4f8a985b7e75c571be9aea9e077861e
tree    8a0a0b1e92fbb6b56ab040841967eaa651d3ab09
parent  cb956ab7bb2de23752b600116e12f5c4cd63dd80
...
7
8
9
10
11
12
13
 
14
...
7
8
9
 
 
 
10
11
12
0
@@ -7,6 +7,4 @@ module Merb; module Test; end; end
0
 
0
 require 'merb-core/test/helpers'
0
 
0
-require 'merb-core/test/matchers'
0
-
0
-require 'merb-core/test/example_groups'
0
\ No newline at end of file
0
+require 'merb-core/test/matchers'
0
\ No newline at end of file
...
2
3
4
5
6
 
 
 
 
 
7
...
2
3
4
 
5
6
7
8
9
10
11
0
@@ -2,4 +2,8 @@ module Merb::Test::Rspec; end
0
 
0
 require "merb-core/test/matchers/controller_matchers"
0
 require "merb-core/test/matchers/route_matchers"
0
-require "merb-core/test/matchers/view_matchers"
0
\ No newline at end of file
0
+require "merb-core/test/matchers/view_matchers"
0
+
0
+Merb::Test::ControllerHelper.send(:include, Merb::Test::Rspec::ControllerMatchers)
0
+Merb::Test::RouteHelper.send(:include, Merb::Test::Rspec::RouteMatchers)
0
+Merb::Test::ViewHelper.send(:include, Merb::Test::Rspec::ViewMatchers)
0
\ No newline at end of file

Comments