module SequelSpec::Matchers::Association
Public Instance Methods
have_many_through_many(*args)
click to toggle source
# File lib/sequel_spec/association/have_many_through_many_matcher.rb, line 10 def have_many_through_many(*args) HaveManyThroughManyMatcher.new(*args) end
have_many_to_many(*args)
click to toggle source
# File lib/sequel_spec/association/have_many_to_many_matcher.rb, line 10 def have_many_to_many(*args) HaveManyToManyMatcher.new(*args) end
have_many_to_one(*args)
click to toggle source
# File lib/sequel_spec/association/have_many_to_one_matcher.rb, line 10 def have_many_to_one(*args) HaveManyToOneMatcher.new(*args) end
have_one_through_one(*args)
click to toggle source
# File lib/sequel_spec/association/have_one_through_one_matcher.rb, line 10 def have_one_through_one(*args) HaveOneThroughOneMatcher.new(*args) end
have_one_to_many(*args)
click to toggle source
# File lib/sequel_spec/association/have_one_to_many_matcher.rb, line 10 def have_one_to_many(*args) HaveOneToManyMatcher.new(*args) end
have_one_to_one(*args)
click to toggle source
# File lib/sequel_spec/association/have_one_to_one_matcher.rb, line 10 def have_one_to_one(*args) HaveOneToOneMatcher.new(*args) end