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
Various attempts to get the verify suite working.
dyoder (author)
Wed Mar 26 16:21:26 -0700 2008
commit  2684e38bbfe22b85b4d6f7a0c912222d9f17777b
tree    5e1ce88ab7652208e024710b49e58569a7e74193
parent  4f5376af0ad156acd4e458b37d651bf068e31dcb
...
21
22
23
24
 
25
26
27
28
...
21
22
23
 
24
25
26
27
28
0
@@ -21,7 +21,7 @@ task :symlink do
0
   system(cmd = "ln -s #{bindir} waves/") && puts(cmd)
0
 end
0
 
0
-task :verify => :'cluster:start' do
0
+task :verify => :'cluster:restart' do
0
   specs = Dir[ :verify / :spec / '*.rb' ]
0
   `specrb -r../helpers #{specs.join(' ')} --rdox > doc/SPEC`
0
 end
0
\ No newline at end of file
...
1
2
3
4
5
 
 
6
7
8
...
1
2
3
 
 
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module Test
0
   module Configurations
0
     class Default < Waves::Configurations::Default
0
- database :host => 'localhost', :adapter => 'mysql', :database => 'test',
0
- :user => 'root', :password => ''
0
+ # database :host => 'localhost', :adapter => 'mysql', :database => 'test',
0
+ # :user => 'root', :password => ''
0
     end
0
   end
0
 end
...
1
2
3
4
 
 
5
6
7
 
8
9
10
11
 
12
13
14
 
15
16
17
 
...
1
2
 
 
3
4
5
6
 
7
8
9
10
 
11
12
13
 
14
15
16
 
17
0
@@ -1,17 +1,17 @@
0
 
0
 == A developer can map requests to filters.
0
-* Map a path to a 'before' filter.
0
-* Map a path to an 'after' filter.
0
+* Map a path to a 'before' filter. (ERROR - 1) (empty)
0
+* Map a path to an 'after' filter. (ERROR - 2) (empty)
0
 
0
 == A developer can extract parameters from a request path or URL.
0
-* Extract a parameter via a regexp match of the path.
0
+* Extract a parameter via a regexp match of the path. (ERROR - 3) (empty)
0
 * Extract a parameter via a regexp match of the URL. (disabled)
0
 
0
 == A developer can map requests using the request path.
0
-* Map the path of a GET request to a lambda.
0
+* Map the path of a GET request to a lambda. (ERROR - 4) (empty)
0
 
0
 == A developer can map requests using the request method.
0
-* Map the path of a POST request to a lambda.
0
+* Map the path of a POST request to a lambda. (ERROR - 5) (empty)
0
 * Map the path of a DELETE request to a lambda. (disabled)
0
 
0
-7 specifications, 2 disabled (6 requirements), 0 failures
0
+7 specifications, 2 disabled, 5 empty (0 requirements), 0 failures, 5 errors
...
1
 
2
3
4
...
41
42
43
44
 
45
46
47
...
 
1
2
3
4
...
41
42
43
 
44
45
46
47
0
@@ -1,4 +1,4 @@
0
-require 'sequel'
0
+# require 'sequel'
0
 module Test
0
 
0
   extend Autocreate; extend Autoload; extend Reloadable
0
@@ -41,7 +41,7 @@ module Test
0
   # accessor methods for modules and other key application objects ...
0
   class << self
0
     def config ; Waves::Server.config rescue nil || Waves::Console.config ; end
0
- def database ; @database ||= Sequel.open( config.database ) ; end
0
+ # def database ; @database ||= Sequel.open( config.database ) ; end
0
     def configurations ; Test::Configurations ; end
0
     def controllers ; Test::Controllers ; end
0
     def models ; Test::Models ; end

Comments

    No one has commented yet.