summaryrefslogtreecommitdiff
path: root/spec/factories/labels.rb
blob: af9f3efa641085c94f1749759d2ac18dd558db53 (plain)
1
2
3
4
5
6
7
8
9
# Read about factories at https://github.com/thoughtbot/factory_girl

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