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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <zegerjan@gitlab.com>2016-04-16 22:09:08 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2016-05-06 11:47:11 +0300
commit3bdc57f0a710b3769381ecad7ea4098223ecff56 (patch)
treeabfe22d7d40c7d3e2912d659b045273254767dea /spec/factories/award_emoji.rb
parent05920a7964a039fd65d6b665c2ebd130d5ef949c (diff)
Create table for award emoji
Diffstat (limited to 'spec/factories/award_emoji.rb')
-rw-r--r--spec/factories/award_emoji.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/factories/award_emoji.rb b/spec/factories/award_emoji.rb
new file mode 100644
index 00000000000..a1173834b29
--- /dev/null
+++ b/spec/factories/award_emoji.rb
@@ -0,0 +1,7 @@
+FactoryGirl.define do
+ factory :award_emoji do
+ name "thumbsup"
+ user
+ awardable factory: :issue
+ end
+end