2017-02-28 15:50:57 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
feature 'Project Issues RSS' do
|
|
|
|
let(:project) { create(:empty_project, visibility_level: Gitlab::VisibilityLevel::PUBLIC) }
|
2017-07-06 12:20:50 -04:00
|
|
|
let(:path) { project_issues_path(project) }
|
2017-02-28 15:50:57 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
create(:issue, project: project)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed in' do
|
2017-06-21 19:44:10 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
2017-02-28 15:50:57 -05:00
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2017-02-28 15:50:57 -05:00
|
|
|
visit path
|
|
|
|
end
|
|
|
|
|
2017-05-23 16:20:53 -04:00
|
|
|
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-02-28 15:50:57 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when signed out' do
|
|
|
|
before do
|
|
|
|
visit path
|
|
|
|
end
|
|
|
|
|
2017-05-23 16:20:53 -04:00
|
|
|
it_behaves_like "it has an RSS button without an RSS token"
|
|
|
|
it_behaves_like "an autodiscoverable RSS feed without an RSS token"
|
2017-02-28 15:50:57 -05:00
|
|
|
end
|
|
|
|
end
|