1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/lib/factory_girl/strategy/null.rb

12 lines
168 B
Ruby
Raw Normal View History

module FactoryGirl
class Strategy
class Null
def association(runner)
end
def result(attribute_assigner, to_create)
end
end
end
end