public
Rubygem
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/thoughtbot/shoulda.git
documentation changes
tsaleh (author)
Sat Sep 20 12:35:05 -0700 2008
commit  2c41a563f9e4804e40a3995cfcf4d9e01a7d9ca9
tree    77a453dbc77dc0dca35cc495e4b7466b295b12af
parent  8a111a6e815fc2a94567d709667a13850b98b5ab
...
73
74
75
76
 
77
78
79
...
93
94
95
96
 
97
98
99
...
73
74
75
 
76
77
78
79
...
93
94
95
 
96
97
98
99
0
@@ -73,7 +73,7 @@ module Thoughtbot # :nodoc:
0
 
0
     # == Before statements
0
     #
0
- # Before statements are simply should statements that run after the current
0
+ # Before statements are simply should statements that run before the current
0
     # context's setup. These are especially useful when setting expectations.
0
     #
0
     # === Example:
0
@@ -93,7 +93,7 @@ module Thoughtbot # :nodoc:
0
     # # normal should statement
0
     # should_respond_with :success
0
     #
0
- # # runs before get :index
0
+ # # runs before "get :index"
0
     # before_should "find all users" do
0
     # User.expects(:find).with(:all).returns(@users)
0
     # end

Comments

    No one has commented yet.