Velocipede's User, Sales, and Bike Inventory Web App
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FactoryGirl.define do
|
|
|
|
factory :user do
|
|
|
|
sequence(:email) { |n| "user_#{n}@example.com" }
|
|
|
|
password 'password'
|
|
|
|
password_confirmation { password }
|
|
|
|
first_name 'Michael'
|
|
|
|
last_name 'Scott'
|
|
|
|
sequence(:bike_id) { |n| n }
|
|
|
|
association :user_role, factory: :role_user
|
|
|
|
|
|
|
|
factory :staff do
|
|
|
|
first_name 'Staff'
|
|
|
|
association :user_role, factory: :role_staff
|
|
|
|
end
|
|
|
|
|
|
|
|
factory :admin do
|
|
|
|
first_name 'Admin'
|
|
|
|
association :user_role, factory: :role_admin
|
|
|
|
end
|
|
|
|
|
|
|
|
factory :bike_admin do
|
|
|
|
first_name 'BikeAdmin'
|
|
|
|
association :user_role, factory: :role_bike_admin
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|