summaryrefslogtreecommitdiff
path: root/spec/factories/labels.rb
blob: 6829387c660c86490e08d806fe90f315a8ee29f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# == 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
#

# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :label do
    title "Bug"
    color "#990000"
    project
  end
end