summaryrefslogtreecommitdiff
path: root/spec/features/admin_link_spec.rb
blob: 8ec1176927f87710eb4e88ad56bf75a12ec9977b (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'spec_helper'

RSpec.feature 'Subscriptions admin link', type: :feature do
  stub_authorization!

  scenario 'Navigating to the subscriptions backend' do
    visit '/admin'
    click_on "Subscriptions"
    expect(page.current_path).to match /admin\/subscriptions/
  end
end