gitlabhq/spec/factories/user_team_user_relationships.rb

11 lines
229 B
Ruby
Raw Normal View History

2013-01-19 21:53:03 +04:00
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :user_team_user_relationship do
2013-01-23 20:43:23 +04:00
user
user_team
2013-01-19 21:53:03 +04:00
group_admin false
2013-01-23 20:43:23 +04:00
permission { UsersProject::MASTER }
2013-01-19 21:53:03 +04:00
end
end