2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-11-23 18:12:20 +00:00
|
|
|
Factory.define(:private_user) do |p|
|
|
|
|
p.login { Factory.next(:string) }
|
|
|
|
p.password { Factory.next(:string) }
|
|
|
|
p.association :platform, :factory => :platform
|
|
|
|
p.association :user, :factory => :user
|
2012-01-30 20:39:34 +00:00
|
|
|
end
|