diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-06-21 00:10:50 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-06-21 00:10:50 +0000 |
commit | 019109eac9cbddc6149af0adeff1aad8195b1457 (patch) | |
tree | 72d78e2cab5dd81873c128c401b8d60a337cf74b /spec/helpers/releases_helper_spec.rb | |
parent | c49df9d3c5d02f76388ff3edf4d287436f9c608c (diff) | |
download | gitlab-ce-019109eac9cbddc6149af0adeff1aad8195b1457.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/helpers/releases_helper_spec.rb')
-rw-r--r-- | spec/helpers/releases_helper_spec.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/helpers/releases_helper_spec.rb b/spec/helpers/releases_helper_spec.rb index e6bf91ceef6..a18e3d1d7fd 100644 --- a/spec/helpers/releases_helper_spec.rb +++ b/spec/helpers/releases_helper_spec.rb @@ -48,16 +48,6 @@ RSpec.describe ReleasesHelper do it 'points new_release_path to the "New Release" page' do expect(helper.data_for_releases_page[:new_release_path]).to eq(new_project_release_path(project)) end - - context 'when the "new_release_page" feature flag is disabled' do - before do - stub_feature_flags(new_release_page: false) - end - - it 'points new_release_path to the "New Tag" page' do - expect(helper.data_for_releases_page[:new_release_path]).to eq(new_project_tag_path(project)) - end - end end end |