Created
November 26, 2018 14:20
-
-
Save al3rez/6a32378fefbaf1c1f7f74f88d2de8d4b 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
RSpec::Matchers.define :have_many do |expected| | |
match do |actual| | |
if actual.respond_to?(:reflect_on_association) | |
actual.reflect_on_association(expected)&.macro == :has_many | |
else | |
actual.class.reflect_on_association(expected)&.macro == :has_many | |
end | |
end | |
end | |
RSpec::Matchers.define :belong_to do |expected| | |
match do |actual| | |
if actual.respond_to?(:reflect_on_association) | |
actual.reflect_on_association(expected)&.macro == :belongs_to | |
else | |
actual.class.reflect_on_association(expected)&.macro == :belongs_to | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment