Model specs
モデルの仕様は type: :model
とマークされます。または、config.infer_spec_type_from_file_location!
を設定している場合は、spec/models
に配置されます。
モデルの仕様は ActiveSupport::TestCase の薄いラッパーであり、それが提供するすべての振る舞いとアサーションを含んでいます。さらに、RSpec独自の振る舞いと期待も含まれます。
例
require "rails_helper"
RSpec.describe Post, type: :model 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