diff options
-rw-r--r-- | spec/factories/user_account.rb | 11 | ||||
-rw-r--r-- | spec/rails_helper.rb | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/spec/factories/user_account.rb b/spec/factories/user_account.rb new file mode 100644 index 0000000..1691e0c --- /dev/null +++ b/spec/factories/user_account.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +FactoryBot.define do + factory :user_account, class: 'UserAccount' do + email { Faker::Internet.email } + first_name { Faker::Name.first_name } + last_name { Faker::Name.last_name } + password { SecureRandom.hex(32) } + role { 'regular' } + end +end diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index 0624d3e..ea338cd 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -20,7 +20,7 @@ require 'rspec/rails' # directory. Alternatively, in the individual `*_spec.rb` files, manually # require only the support files necessary. # -# Dir[Rails.root.join('spec', 'support', '**', '*.rb')].sort.each { |f| require f } +Dir[Rails.root.join('spec', 'support', '**', '*.rb')].sort.each { |f| require f } # Checks for pending migrations and applies them before tests are run. # If you are not using ActiveRecord, you can remove these lines. |