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
verb agreement
automatthew (author)
Fri May 30 07:58:19 -0700 2008
commit  1ca657edeb9c7f9ae01a1404c3f61f5517dd17e6
tree    b045372356becc9094bc7b3d567aede9815f215a
parent  26200d78a4b244f9e267199569a650fa6a8eb8ec
...
17
18
19
20
 
21
22
23
24
 
25
26
27
28
 
29
30
31
32
 
33
34
35
...
17
18
19
 
20
21
22
23
 
24
25
26
27
 
28
29
30
31
 
32
33
34
35
0
@@ -17,19 +17,19 @@ Waves << TestApplication
0
 Waves::Console.load( :mode => :development )
0
 TA = TestApplication
0
 
0
-describe "An application module which includes the Sequel ORM layer should" do
0
+describe "An application module which includes the Sequel ORM layer" do
0
   
0
   wrap { rm_if_exist 'test.db' }
0
     
0
- it "auto_create models that inherit from Sequel::Model" do
0
+ it "auto_creates models that inherit from Sequel::Model" do
0
     TA::Models::Default.superclass.should == Sequel::Model
0
   end
0
   
0
- it "set the dataset to use the snake_case of the class name as the table name" do
0
+ it "sets the dataset to use the snake_case of the class name as the table name" do
0
     TA::Models::Default.dataset.to_table_reference.should == "(SELECT * FROM defaults)"
0
   end
0
   
0
- it "provide accessor for database" do
0
+ it "provides an accessor for database" do
0
     TA.should.respond_to :database
0
   end
0
   

Comments

    No one has commented yet.