public
Description: resources_controller rails plugin: rc makes RESTful controllers fun
Homepage: http://plugins.ardes.com/doc/resources_controller
Clone URL: git://github.com/ianwhite/resources_controller.git
Click here to lend your support to: resources_controller and make a donation at www.pledgie.com !
Removing pending specs, as I'm targeting ianwhite/rspec for now (until various 
patches applied)
ianwhite (author)
Wed Sep 03 04:38:34 -0700 2008
commit  f69379470e88cf9dcd8b3b457e765f30687b064a
tree    c595ddc1c9290eccafda6e2e2c84f16874a0ee8d
parent  e8deb367abe1ce4a00732c49af8d8becf60fbc40
...
12
13
14
15
16
 
 
 
17
18
19
...
12
13
14
 
 
15
16
17
18
19
20
0
@@ -12,8 +12,9 @@
0
 
0
 garlic do
0
   repo 'rails', :url => 'git://github.com/rails/rails'#, :local => "~/dev/vendor/rails"
0
-  repo 'rspec', :url => 'git://github.com/dchelimsky/rspec'#, :local => "~/dev/vendor/rspec"
0
-  repo 'rspec-rails', :url => 'git://github.com/dchelimsky/rspec-rails'#, :local => "~/dev/vendor/rspec-rails"
0
+  # targeting ianwhite/rspec as it has some outstanding patches applied
0
+  repo 'rspec', :url => 'git://github.com/ianwhite/rspec'#, :local => "~/dev/vendor/rspec"
0
+  repo 'rspec-rails', :url => 'git://github.com/ianhwite/rspec-rails'#, :local => "~/dev/vendor/rspec-rails"
0
   repo 'resources_controller', :path => '.'
0
 
0
   target 'edge'
...
146
147
148
149
150
151
152
153
 
 
 
154
155
156
...
146
147
148
 
 
 
 
 
149
150
151
152
153
154
0
@@ -146,11 +146,9 @@ end
0
 
0
 describe ForumsController, " (checking that non actions are hidden)" do
0
   it "should only have CRUD actions as action_methods" do
0
-    pending "waiting for #469 on rspec to be accepted" do
0
-      @controller.class.send(:action_methods).should == Set.new([
0
-        'index', 'show', 'edit', 'new', 'update', 'create', 'destroy'
0
-      ])
0
-    end
0
+    @controller.class.send(:action_methods).should == Set.new([
0
+      'index', 'show', 'edit', 'new', 'update', 'create', 'destroy'
0
+    ])
0
   end
0
 end
0
 
...
38
39
40
41
42
43
 
44
45
46
...
38
39
40
 
 
 
41
42
43
44
0
@@ -38,9 +38,7 @@ describe InfosController, " (its actions)" do
0
   end
0
   
0
   it "should have only ['show', 'edit', 'update'] in action_methods" do
0
-    pending "waiting for #469 on rspec to be accepted" do
0
-      @controller.class.send(:action_methods).should == Set.new(['show', 'edit', 'update'])
0
-    end
0
+    @controller.class.send(:action_methods).should == Set.new(['show', 'edit', 'update'])
0
   end
0
   
0
   it "GET /account/info should be successful" do

Comments