gitlabhq/spec/factories/user_team_project_relationships.rb
2013-01-24 22:31:48 +02:00

10 lines
218 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :user_team_project_relationship do
project
user_team
greatest_access { UsersProject::MASTER }
end
end