mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
11 lines
168 B
Ruby
11 lines
168 B
Ruby
module FactoryGirl
|
|
class Strategy
|
|
class Null
|
|
def association(runner)
|
|
end
|
|
|
|
def result(attribute_assigner, to_create)
|
|
end
|
|
end
|
|
end
|
|
end
|