public
Rubygem
Fork of thoughtbot/shoulda
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/technicalpickles/shoulda.git
typos

git-svn-id: https://svn.thoughtbot.com/plugins/shoulda/trunk@440 
7bbfaf0e-4d1d-0410-9690-a8bb5f8ef2aa
tsaleh (author)
Sat Apr 05 07:36:17 -0700 2008
commit  915f76bcb910dea88905cd8f83fe895bc7eaa23f
tree    89cbbdc4d09b6ab6cc3aaa6eefdc673610b77415
parent  80095da4de450f962b605b2e079eda9b801aa44b
0
...
20
21
22
23
 
24
25
26
...
29
30
31
32
 
33
34
35
...
20
21
22
 
23
24
25
26
...
29
30
31
 
32
33
34
35
0
@@ -20,7 +20,7 @@ Stop killing your fingers with all of those underscores... Name your tests with
0
         @user = User.find(:first)
0
       end
0
     
0
- should "return its full name"
0
+ should "return its full name" do
0
         assert_equal 'John Doe', @user.full_name
0
       end
0
     
0
@@ -29,7 +29,7 @@ Stop killing your fingers with all of those underscores... Name your tests with
0
           @user.profile = Profile.find(:first)
0
         end
0
       
0
- should "return true when sent #has_profile?"
0
+ should "return true when sent #has_profile?" do
0
           assert @user.has_profile?
0
         end
0
       end

Comments

    No one has commented yet.