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:
Diffstat (limited to 'spec/helpers/issuables_helper_spec.rb')
-rw-r--r--spec/helpers/issuables_helper_spec.rb20
1 files changed, 14 insertions, 6 deletions
diff --git a/spec/helpers/issuables_helper_spec.rb b/spec/helpers/issuables_helper_spec.rb
index 0faea5629e8..6abce4c5983 100644
--- a/spec/helpers/issuables_helper_spec.rb
+++ b/spec/helpers/issuables_helper_spec.rb
@@ -109,10 +109,14 @@ RSpec.describe IssuablesHelper, feature_category: :team_planning do
allow(helper).to receive(:current_user).and_return(user)
end
- context 'when assigned issues count is over 100' do
- let_it_be(:issues) { create_list(:issue, 101, project: project, assignees: [user]) }
+ context 'when assigned issues count is over MAX_LIMIT_FOR_ASSIGNEED_ISSUES_COUNT' do
+ before do
+ stub_const('User::MAX_LIMIT_FOR_ASSIGNEED_ISSUES_COUNT', 2)
+ end
+
+ let_it_be(:issues) { create_list(:issue, 3, project: project, assignees: [user]) }
- it { is_expected.to eq 100 }
+ it { is_expected.to eq 2 }
end
end
end
@@ -127,10 +131,14 @@ RSpec.describe IssuablesHelper, feature_category: :team_planning do
allow(helper).to receive(:current_user).and_return(user)
end
- context 'when assigned issues count is over 99' do
- let_it_be(:issues) { create_list(:issue, 100, project: project, assignees: [user]) }
+ context 'when assigned issues count is over MAX_LIMIT_FOR_ASSIGNEED_ISSUES_COUNT' do
+ before do
+ stub_const('User::MAX_LIMIT_FOR_ASSIGNEED_ISSUES_COUNT', 2)
+ end
+
+ let_it_be(:issues) { create_list(:issue, 3, project: project, assignees: [user]) }
- it { is_expected.to eq '99+' }
+ it { is_expected.to eq '1+' }
end
end