gitlab-org--gitlab-foss/spec/features/dashboard/activity_spec.rb

14 lines
334 B
Ruby
Raw Normal View History

require 'spec_helper'
RSpec.describe 'Dashboard Activity', feature: true do
let(:user) { create(:user) }
before do
sign_in(user)
visit activity_dashboard_path
end
2017-05-23 20:20:53 +00: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"
end