Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 693 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 693 Bytes

Model specs live in spec/models or any example group with :type => :model.

A model spec is a thin wrapper for an ActiveSupport::TestCase, and includes all of the behavior and assertions that it provides, in addition to RSpec's own behavior and expectations.

Examples

require "spec_helper"

describe Post do
  context "with 2 or more comments" do
    it "orders them in reverse chronologically" do
      post = Post.create!
      comment1 = post.comments.create!(:body => "first comment")
      comment2 = post.comments.create!(:body => "second comment")
      expect(post.reload.comments).to eq([comment2, comment1])
    end
  end
end