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
added bug and feature test methods; no-op under normal circumstances
automatthew (author)
Mon Sep 22 10:15:07 -0700 2008
commit  339d32ae7b2cd4b9999956194d2d2f45f128144e
tree    4aa688447bd94602748432d14d8d3924f3b79159
parent  96c39dd60eb4980562e3949da6f14fddfaf89b53
...
14
15
16
 
 
 
 
 
 
 
 
17
18
19
...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
0
@@ -14,6 +14,14 @@ module Waves
0
   module Verify
0
     module Helpers
0
       
0
+ def feature(desc, &block)
0
+ it(desc, &block) if defined?(VERIFY_FEATURES)
0
+ end
0
+
0
+ def bug(desck, &block)
0
+ it(desc, &block) if defined?(VERIFY_BUGS)
0
+ end
0
+
0
       def ugly_warning(why)
0
         if defined?(FIND_UGLY)
0
           warn "\n#{why} in:"

Comments

    No one has commented yet.