From 34d56e5680b1df850b6260a716b18aabc491c792 Mon Sep 17 00:00:00 2001 From: Jerome Dalbert Date: Sun, 7 Sep 2025 12:32:43 -0700 Subject: [PATCH] Remove unused authentication generator file --- .../factory_bot/authentication/templates/users.rb | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 lib/generators/factory_bot/authentication/templates/users.rb 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