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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
614 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Project Activity RSS' do
2018-10-15 14:42:47 +05:30
let(:project) { create(:project, :public) }
2022-04-04 11:22:00 +05:30
let(:user) { project.first_owner }
2017-09-10 17:25:29 +05:30
let(:path) { activity_project_path(project) }
2017-08-17 22:00:37 +05:30
before do
create(:issue, project: project)
end
context 'when signed in' do
before do
2022-04-04 11:22:00 +05:30
sign_in(project.first_owner)
2017-08-17 22:00:37 +05:30
visit path
end
2018-11-08 19:23:39 +05:30
it_behaves_like "it has an RSS button with current_user's feed token"
2017-08-17 22:00:37 +05:30
end
context 'when signed out' do
before do
visit path
end
2018-11-08 19:23:39 +05:30
it_behaves_like "it has an RSS button without a feed token"
2017-08-17 22:00:37 +05:30
end
end