Skip to content

Instantly share code, notes, and snippets.

@al3rez
Last active November 26, 2018 14:36
Show Gist options
  • Save al3rez/39eea367d292bb8ceb20b7fe3de33647 to your computer and use it in GitHub Desktop.
Save al3rez/39eea367d292bb8ceb20b7fe3de33647 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