debian-mirror-gitlab/spec/features/projects/issues/rss_spec.rb

33 lines
789 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'spec_helper'
feature 'Project Issues RSS' do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, visibility_level: Gitlab::VisibilityLevel::PUBLIC) }
let(:path) { project_issues_path(project) }
2017-08-17 22:00:37 +05:30
before do
create(:issue, project: project)
end
context 'when signed in' do
2017-09-10 17:25:29 +05:30
let(:user) { create(:user) }
2017-08-17 22:00:37 +05:30
before do
project.team << [user, :developer]
2017-09-10 17:25:29 +05:30
sign_in(user)
2017-08-17 22:00:37 +05:30
visit path
end
2017-09-10 17:25:29 +05:30
it_behaves_like "it has an RSS button with current_user's RSS token"
it_behaves_like "an autodiscoverable RSS feed with current_user's RSS token"
2017-08-17 22:00:37 +05:30
end
context 'when signed out' do
before do
visit path
end
2017-09-10 17:25:29 +05:30
it_behaves_like "it has an RSS button without an RSS token"
it_behaves_like "an autodiscoverable RSS feed without an RSS token"
2017-08-17 22:00:37 +05:30
end
end