Module: ActiveMocker::MockCreator::Associations
- Defined in:
- lib/active_mocker/mock_creator.rb
Instance Method Summary collapse
- #association_collection ⇒ Object
- #belongs_to ⇒ Object
- #has_and_belongs_to_many ⇒ Object
- #has_many ⇒ Object
- #has_one ⇒ Object
- #relation_find(key, value) ⇒ Object
Instance Method Details
#association_collection ⇒ Object
331 332 333 |
# File 'lib/active_mocker/mock_creator.rb', line 331 def association_collection @association_collection ||= schema_scrapper.associations.to_a end |
#belongs_to ⇒ Object
319 320 321 |
# File 'lib/active_mocker/mock_creator.rb', line 319 def belongs_to relation_find(:type, __method__) end |
#has_and_belongs_to_many ⇒ Object
323 324 325 |
# File 'lib/active_mocker/mock_creator.rb', line 323 def has_and_belongs_to_many relation_find(:type, __method__) end |
#has_many ⇒ Object
311 312 313 |
# File 'lib/active_mocker/mock_creator.rb', line 311 def has_many relation_find(:type, __method__) end |
#has_one ⇒ Object
315 316 317 |
# File 'lib/active_mocker/mock_creator.rb', line 315 def has_one relation_find(:type, __method__) end |
#relation_find(key, value) ⇒ Object
327 328 329 |
# File 'lib/active_mocker/mock_creator.rb', line 327 def relation_find(key, value) association_collection.select { |r| r.send(key).to_sym == value } end |