summaryrefslogtreecommitdiff
path: root/spec/javascripts/fixtures/application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/fixtures/application_settings.rb')
-rw-r--r--spec/javascripts/fixtures/application_settings.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/spec/javascripts/fixtures/application_settings.rb b/spec/javascripts/fixtures/application_settings.rb
deleted file mode 100644
index d4651fa6ece..00000000000
--- a/spec/javascripts/fixtures/application_settings.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-require 'spec_helper'
-
-describe Admin::ApplicationSettingsController, '(JavaScript fixtures)', type: :controller do
- include StubENV
- include JavaScriptFixturesHelpers
-
- let(:admin) { create(:admin) }
- let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
- let(:project) { create(:project_empty_repo, namespace: namespace, path: 'application-settings') }
-
- before do
- stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
- sign_in(admin)
- end
-
- render_views
-
- before(:all) do
- clean_frontend_fixtures('application_settings/')
- end
-
- after do
- remove_repository(project)
- end
-
- it 'application_settings/accounts_and_limit.html' do
- stub_application_setting(user_default_external: false)
-
- get :show
-
- expect(response).to be_success
- end
-end