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

public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
move before block into describe block
automatthew (author)
Mon Aug 11 12:52:34 -0700 2008
commit  8dfa4f7c16821b46e918aec2b423e3bd97de7b43
tree    3bc86a8b7ccab1cde858aa38679962179709de9a
parent  840f9bd3a39ddabe10d370f3dc415191626cb174
...
3
4
5
6
7
8
9
10
11
 
 
 
 
 
12
13
14
...
3
4
5
 
 
 
 
 
6
7
8
9
10
11
12
13
14
0
@@ -3,12 +3,12 @@ require File.join(File.dirname(__FILE__) , "helpers")
0
 
0
 describe "In a mapping's path-matcher" do
0
   
0
- before do
0
- mapping.clear
0
- handle( Waves::Dispatchers::NotFoundError ) { response.status = 404 }
0
- end
0
-
0
   describe "the HTTP method" do
0
+
0
+ before do
0
+ mapping.clear
0
+ handle( Waves::Dispatchers::NotFoundError ) { response.status = 404 }
0
+ end
0
   
0
     it "is specified with a hash key" do
0
       mapping.response( :get => [ 'somewhere' ] ) { "GET method" }

Comments

    No one has commented yet.