Welcome to mirror list, hosted at ThFree Co, Russian Federation.

award_emoji.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1173834b2920238765aeee10b14308278d66474 (plain)
1
2
3
4
5
6
7
FactoryGirl.define do
  factory :award_emoji do
    name "thumbsup"
    user
    awardable factory: :issue
  end
end