Created
November 7, 2012 08:08
-
-
Save xirukitepe/4030131 to your computer and use it in GitHub Desktop.
Sample rspec test for model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe Article do | |
describe ".recent" do | |
it "includes articles published less than one week ago" do | |
article = Article.create!(:published_at => Date.today - 1.week + 1.second) | |
Article.recent.should eq([article]) | |
end | |
it "excludes articles published at midnight one week ago" do | |
article = Article.create!(:published_at => Date.today - 1.week) | |
Article.recent.should be_empty | |
end | |
it "excludes articles published more than one week ago" do | |
article = Article.create!(:published_at => Date.today - 1.week - 1.second) | |
Article.recent.should be_empty | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment