11 lines
226 B
Ruby
11 lines
226 B
Ruby
|
# -*- encoding : utf-8 -*-
|
||
|
FactoryGirl.define do
|
||
|
factory :token do
|
||
|
association :creator, :factory => :user
|
||
|
end
|
||
|
|
||
|
factory :platform_token, :parent => :token do
|
||
|
association :subject, :factory => :platform
|
||
|
end
|
||
|
end
|