mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 00:26:07 +10:00
19 lines
284 B
Ruby
19 lines
284 B
Ruby
FactoryGirl.define do
|
|
factory :issue do
|
|
title
|
|
author
|
|
project
|
|
|
|
trait :closed do
|
|
state :closed
|
|
end
|
|
|
|
trait :reopened do
|
|
state :reopened
|
|
end
|
|
|
|
factory :closed_issue, traits: [:closed]
|
|
factory :reopened_issue, traits: [:reopened]
|
|
end
|
|
end
|