summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Desantis <desa.alessandro@gmail.com>2020-11-16 16:26:13 +0100
committerAlessandro Desantis <desa.alessandro@gmail.com>2020-11-16 17:09:04 +0100
commit6267bd99adc0ed226fb62cf5c71dcec6205d0604 (patch)
tree76ee8f33e4fbc4ba9393435c1522eaadbedde1ca
parent380fab143697ebc5508a50771ccba9731aab07af (diff)
Remove admin link spec
This spec was used to test that the Subscriptions item is present in the backend's navbar, but it's redundant as we now have other specs that leverage that same link.
-rw-r--r--spec/features/admin_link_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/features/admin_link_spec.rb b/spec/features/admin_link_spec.rb
deleted file mode 100644
index 53b30bc..0000000
--- a/spec/features/admin_link_spec.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require 'spec_helper'
-
-RSpec.describe 'Subscriptions admin link', type: :feature do
- stub_authorization!
-
- it 'Navigating to the subscriptions backend' do
- visit '/admin'
- click_on "Subscriptions"
- expect(page).to have_current_path %r{admin/subscriptions}
- end
-end