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

Cop idea: Redundant hash options for #create, or #build, or etc.

Open ydakuka opened this issue 1 year ago • 0 comments

# bad
let :user do
  create(
    :user,
    {
      short_description: short_description,
      data: data,
      user_logo: user_logo,
    },
  )
end

# good
let :user do
  create(
    :user,
    short_description: short_description,
    data: data,
    user_logo: user_logo,
  )
end

ydakuka avatar Dec 20 '23 17:12 ydakuka