Created
November 26, 2018 14:29
-
-
Save al3rez/19538826cc42e021684a3b48df065a77 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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