DEBSOURCES
Skip Quicknav
sources / ruby-factory-bot / 6.5.1-1 / lib / factory_bot / strategy / null.rb
123456789101112131415
module FactoryBot module Strategy class Null def association(runner) end def result(evaluation) end def to_sym :null end end end end