thingspeak/spec/factories/user.rb

15 lines
329 B
Ruby
Raw Normal View History

FactoryGirl.define do
factory :user do
sequence(:login) {|n| "name#{n}" }
sequence(:email) {|n| "email#{n}@example.com" }
2014-03-14 00:16:35 +01:00
password "foobar88"
password_confirmation {|u| u.password}
bio ""
website ""
time_zone "London"
api_key 'ED1HVHNEH2BZD0AB'
2014-03-14 00:16:35 +01:00
authentication_token '123456token'
end
end