gitlabhq/spec/factories/groups.rb
2012-10-02 18:17:12 +03:00

22 lines
482 B
Ruby

# == Schema Information
#
# Table name: groups
#
# id :integer not null, primary key
# name :string(255) not null
# code :string(255) not null
# owner_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
#
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :group do
name "MyString"
code "MyString"
owner_id 1
end
end