thoughtbot/factory_girl

View on GitHub
lib/factory_bot/strategy/null.rb

Summary

Maintainability
A
0 mins
Test Coverage
module FactoryBot
  module Strategy
    class Null
      def association(runner)
      end

      def result(evaluation)
      end
    end
  end
end