Welcome to mirror list, hosted at ThFree Co, Russian Federation.

activity_spec.rb « dashboard « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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