debian-mirror-gitlab/spec/features/users/rss_spec.rb

26 lines
467 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'
2018-11-08 19:23:39 +05:30
describe 'User RSS' do
2017-09-10 17:25:29 +05:30
let(:user) { create(:user) }
2017-08-17 22:00:37 +05:30
let(:path) { user_path(create(:user)) }
context 'when signed in' do
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
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