creddit/spec/factories/user_session_factory.rb

8 lines
150 B
Ruby
Raw Normal View History

2015-07-10 00:19:01 -04:00
FactoryGirl.define do
factory :user_session do
user
user_agent { Faker::Lorem.sentence }
ip { Faker::Internet.ip_v4_address }
end
end