Skip to content

Instantly share code, notes, and snippets.

@xirukitepe
Created November 7, 2012 08:08
Show Gist options
  • Save xirukitepe/4030131 to your computer and use it in GitHub Desktop.
Save xirukitepe/4030131 to your computer and use it in GitHub Desktop.
Sample rspec test for model
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