mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
9 lines
139 B
Ruby
9 lines
139 B
Ruby
module FactoryBot
|
|
module Strategy
|
|
class Null
|
|
def association(runner); end
|
|
|
|
def result(evaluation); end
|
|
end
|
|
end
|
|
end
|