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-25 21:10:20 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2016-05-10 13:03:13 +0300
commitdccf8a9fc8d4dde91942944f6b47387bfb13c380 (patch)
tree7574eea0adcc0cd46bf3d685fccec0d08c37b252 /features/steps/project/issues
parent4eb16290e4e95c0a9bcf3d01ecc8060d91eec021 (diff)
Add tests on Awardables and Award Emoji
Diffstat (limited to 'features/steps/project/issues')
-rw-r--r--features/steps/project/issues/issues.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/features/steps/project/issues/issues.rb b/features/steps/project/issues/issues.rb
index fc12843ea5c..78ddaee8771 100644
--- a/features/steps/project/issues/issues.rb
+++ b/features/steps/project/issues/issues.rb
@@ -191,15 +191,15 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
end
step 'issue "Release 0.4" have 2 upvotes and 1 downvote' do
- issue = Issue.find_by(title: 'Release 0.4')
- create_list(:upvote_note, 2, project: project, noteable: issue)
- create(:downvote_note, project: project, noteable: issue)
+ awardable = Issue.find_by(title: 'Release 0.4')
+ create_list(:upvote, 2, project: project, awardable: awardable)
+ create(:downvote, project: project, awardable: awardable)
end
step 'issue "Tweet control" have 1 upvote and 2 downvotes' do
issue = Issue.find_by(title: 'Tweet control')
- create(:upvote_note, project: project, noteable: issue)
- create_list(:downvote_note, 2, project: project, noteable: issue)
+ create(:upvote, project: project, noteable: issue)
+ create_list(:downvote, 2, project: project, noteable: issue)
end
step 'The list should be sorted by "Least popular"' do