Last active
November 26, 2018 14:36
-
-
Save al3rez/39eea367d292bb8ceb20b7fe3de33647 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