rubocop-factory_bot icon indicating copy to clipboard operation
rubocop-factory_bot copied to clipboard

Redundant blocks for factory and association

Open ydakuka opened this issue 2 years ago • 0 comments

# bad
FactoryBot.define do
  factory :user do
    publisher factory: %i[publisher]        # FactoryBot/AssociationStyle or FactoryBot/RedundantFactoryOption
    advertiser { association(:advertiser) } # FactoryBot/FactoryAssociationWithStrategy
  end
end

# good
FactoryBot.define do
  factory :user do
    publisher
    advertiser
  end
end

ydakuka avatar Oct 20 '23 22:10 ydakuka