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:
authorRémy Coutable <remy@rymai.me>2018-08-30 18:18:01 +0300
committerRémy Coutable <remy@rymai.me>2018-08-30 18:18:01 +0300
commitd004c768417ef95a4aecb58c6c241ceed1a73d8f (patch)
tree7dafc633b9592911af9657d22e0298e912a56c77 /spec/features/issues/rss_spec.rb
parent418d35d97491af3921e8f5cca2734b0063c143a9 (diff)
Reorganize issues and merge request feature specs in the same folder
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'spec/features/issues/rss_spec.rb')
-rw-r--r--spec/features/issues/rss_spec.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/features/issues/rss_spec.rb b/spec/features/issues/rss_spec.rb
new file mode 100644
index 00000000000..0e1383cd607
--- /dev/null
+++ b/spec/features/issues/rss_spec.rb
@@ -0,0 +1,32 @@
+require 'spec_helper'
+
+describe 'Project Issues RSS' do
+ let(:project) { create(:project, visibility_level: Gitlab::VisibilityLevel::PUBLIC) }
+ let(:path) { project_issues_path(project) }
+
+ before do
+ create(:issue, project: project)
+ end
+
+ context 'when signed in' do
+ let(:user) { create(:user) }
+
+ before do
+ project.add_developer(user)
+ sign_in(user)
+ visit path
+ end
+
+ it_behaves_like "it has an RSS button with current_user's feed token"
+ it_behaves_like "an autodiscoverable RSS feed with current_user's feed token"
+ end
+
+ context 'when signed out' do
+ before do
+ visit path
+ end
+
+ it_behaves_like "it has an RSS button without a feed token"
+ it_behaves_like "an autodiscoverable RSS feed without a feed token"
+ end
+end