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

16 lines
191 B
Ruby
Raw Permalink Normal View History

module FactoryBot
module Strategy
class Null
def association(runner)
end
def result(evaluation)
end
def to_sym
:null
end
end
end
end