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_bot/strategy/null.rb
2018-10-07 18:02:54 -04:00

9 lines
139 B
Ruby

module FactoryBot
module Strategy
class Null
def association(runner); end
def result(evaluation); end
end
end
end