summaryrefslogtreecommitdiff
path: root/spec/features/dashboard/activity_spec.rb
blob: ebfe7340eb73db04f438c77ca30060f3c7130e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'

RSpec.describe 'Dashboard Activity', feature: true do
  let(:user) { create(:user) }

  before do
    sign_in(user)
    visit activity_dashboard_path
  end

  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