2013-06-26 07:57:53 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :token do
|
2014-01-21 04:51:49 +00:00
|
|
|
association :creator, factory: :user
|
2013-06-26 07:57:53 +01:00
|
|
|
end
|
|
|
|
|
2014-01-21 04:51:49 +00:00
|
|
|
factory :platform_token, parent: :token do
|
|
|
|
association :subject, factory: :platform
|
2013-06-26 07:57:53 +01:00
|
|
|
end
|
|
|
|
end
|