little spec house cleaning

This commit is contained in:
Adam Meehan 2008-10-28 20:03:37 +11:00
parent 49cd69e565
commit 2f162ca500

View File

@ -86,14 +86,14 @@ describe ValidatesTimeliness::AttributeMethods do
@person.birth_date_and_time.strftime('%Y-%m-%d %H:%M:%S %Z %z').should == time_string + ' EST +1000' @person.birth_date_and_time.strftime('%Y-%m-%d %H:%M:%S %Z %z').should == time_string + ' EST +1000'
end end
it "should return true for attribute changed?" do describe "dirty attributes" do
it "should return true for attribute changed? when value updated" do
time_string = "2000-01-01 02:03:04" time_string = "2000-01-01 02:03:04"
@person.birth_date_and_time = time_string @person.birth_date_and_time = time_string
@person.birth_date_and_time_changed?.should be_true @person.birth_date_and_time_changed?.should be_true
end end
describe "dirty attributes" do
it "should show changes when time attribute changed from nil to Time object" do it "should show changes when time attribute changed from nil to Time object" do
time_string = "2000-01-01 02:03:04" time_string = "2000-01-01 02:03:04"
@person.birth_date_and_time = time_string @person.birth_date_and_time = time_string