1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/spec/factories.rb
Jason Denney aa3ed3d43b git init
2012-12-04 00:46:15 -05:00

15 lines
333 B
Ruby

FactoryGirl.define do
factory :user do
sequence(:email) { |n| "user_#{n}@example.com" }
password 'password'
password_confirmation { password }
first_name 'Michael'
last_name 'Scott'
end
# factory :team do
# sequence(:name) { |n| "mash it #{n} times" }
# association :captain, :factory => :user
# end
end