thoughtbot/factory_bot

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

Summary

Maintainability
A
0 mins
Test Coverage
module FactoryBot
  module Strategy
    class AttributesFor
      def association(runner)
        runner.run(:null)
      end

      def result(evaluation)
        evaluation.hash
      end
    end
  end
end