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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-07 06:09:49 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-07 06:09:49 +0300
commitfc5ff4728b3937c8a505aa06f9cfe5b2da672b03 (patch)
tree2f2d7036d8b76b5a62d47b24c1db006594df0ca6 /spec/helpers/calendar_helper_spec.rb
parentd5f6f9fbcdeb231e03c24b56aaf736580ac40eb2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/helpers/calendar_helper_spec.rb')
-rw-r--r--spec/helpers/calendar_helper_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/helpers/calendar_helper_spec.rb b/spec/helpers/calendar_helper_spec.rb
index ceed4191ef4..08993dd1dd0 100644
--- a/spec/helpers/calendar_helper_spec.rb
+++ b/spec/helpers/calendar_helper_spec.rb
@@ -18,5 +18,14 @@ RSpec.describe CalendarHelper do
expect(helper.calendar_url_options[:feed_token]).to be_nil
end
end
+
+ context 'when feed token disabled' do
+ it "does not have a feed_token" do
+ current_user = create(:user)
+ allow(helper).to receive(:current_user).and_return(current_user)
+ allow(Gitlab::CurrentSettings).to receive(:disable_feed_token).and_return(true)
+ expect(helper.calendar_url_options[:feed_token]).to be_nil
+ end
+ end
end
end