Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created November 26, 2018 14:20
Show Gist options
  • Save al3rez/6a32378fefbaf1c1f7f74f88d2de8d4b to your computer and use it in GitHub Desktop.
Save al3rez/6a32378fefbaf1c1f7f74f88d2de8d4b to your computer and use it in GitHub Desktop.
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