Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created November 26, 2018 14:29
Show Gist options
  • Save al3rez/19538826cc42e021684a3b48df065a77 to your computer and use it in GitHub Desktop.
Save al3rez/19538826cc42e021684a3b48df065a77 to your computer and use it in GitHub Desktop.
require "rails_helper"
RSpec.describe User, type: :model do
it { should have_many(:books) }
it "has many books" do
expect(User).to have_many(:books)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment