debian-mirror-gitlab/spec/factories/labels.rb

23 lines
448 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
# == Schema Information
#
# Table name: labels
#
# id :integer not null, primary key
# title :string(255)
# color :string(255)
# project_id :integer
# created_at :datetime
# updated_at :datetime
2015-11-26 14:37:03 +05:30
# template :boolean default(FALSE)
2015-04-26 12:48:37 +05:30
#
2014-09-02 18:07:02 +05:30
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :label do
title "Bug"
color "#990000"
project
end
end