git-svn-id: https://svn.thoughtbot.com/plugins/shoulda/trunk@440 7bbfaf0e-4d1d-0410-9690-a8bb5f8ef2aa
This commit is contained in:
tsaleh 2008-04-05 14:36:17 +00:00
parent 80095da4de
commit 915f76bcb9
1 changed files with 2 additions and 2 deletions

4
README
View File

@ -20,7 +20,7 @@ Stop killing your fingers with all of those underscores... Name your tests with
@user = User.find(:first)
end
should "return its full name"
should "return its full name" do
assert_equal 'John Doe', @user.full_name
end
@ -29,7 +29,7 @@ Stop killing your fingers with all of those underscores... Name your tests with
@user.profile = Profile.find(:first)
end
should "return true when sent #has_profile?"
should "return true when sent #has_profile?" do
assert @user.has_profile?
end
end