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: 6411ab1bf2a4b74a1ffe1a156e06f1502c78d6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'spec_helper'

RSpec.describe 'Dashboard Activity', feature: true do
  before do
    login_as(create :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