GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

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
Fixes 2 syntax errors in specs. Forking runner swallowed those.
Sat Oct 11 21:34:00 -0700 2008
commit  173c4a1889afe4fa355cd768b0c8c66ebbe987f6
tree    9250f2cd81f38594bf2cf24827c66a62c15e3b84
parent  d4739e7620f2f553578009c859de2dae4863c8a4
...
22
23
24
25
 
26
27
28
...
42
43
44
45
 
46
47
48
...
206
207
208
209
210
 
...
22
23
24
 
25
26
27
28
...
42
43
44
 
45
46
47
48
...
206
207
208
 
209
210
0
@@ -22,7 +22,7 @@ describe "Recognizing requests for deferred routes" do
0
     it "should return the param hash returned by the block" do
0
       Merb::Router.prepare do
0
         match("/deferred").defer_to do |request, params|
0
- :hello => "world"
0
+ { :hello => "world" }
0
         end
0
       end
0
 
0
@@ -42,7 +42,7 @@ describe "Recognizing requests for deferred routes" do
0
     it "should be able to define routes after the deferred route" do
0
       Merb::Router.prepare do
0
         match("/deferred").defer_to do
0
- :hello => "world"
0
+ { :hello => "world" }
0
         end
0
 
0
         match("/").to(:foo => "bar")
0
@@ -206,4 +206,4 @@ describe "Recognizing requests for stacked deferred routes" do
0
     route_for("/second") { |req| req.should_receive(:in_block!) }
0
   end
0
   
0
-end
0
\ No newline at end of file
0
+end

Comments

    No one has commented yet.