diff --git a/lib/generators/factory_bot/authentication/templates/users.rb b/lib/generators/factory_bot/authentication/templates/users.rb deleted file mode 100644 index ab38e1b..0000000 --- a/lib/generators/factory_bot/authentication/templates/users.rb +++ /dev/null @@ -1,9 +0,0 @@ -# frozen_string_literal: true - -FactoryBot.define do - factory :user do - password { "password123" } - password_confirmation { "password123" } - email_address { "user#{SecureRandom.hex(3)}@example.com" } - end -end