From ac4345856cb6a844bbf12d20a1c58fb0077d07f7 Mon Sep 17 00:00:00 2001 From: aeris Date: Tue, 24 May 2022 14:07:44 +0200 Subject: [PATCH] Clean empty test --- test/controllers/.keep | 0 test/controllers/check_controller_test.rb | 4 ---- test/controllers/https_controller_test.rb | 4 ---- test/controllers/site_controller_test.rb | 4 ---- test/controllers/smtp_controller_test.rb | 4 ---- test/controllers/ssh_controller_test.rb | 4 ---- test/controllers/tls_controller_test.rb | 19 ------------------- test/controllers/xmpp_controller_test.rb | 4 ---- test/fixtures/.keep | 0 test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/test_helper.rb | 3 --- 14 files changed, 46 deletions(-) delete mode 100644 test/controllers/.keep delete mode 100644 test/controllers/check_controller_test.rb delete mode 100644 test/controllers/https_controller_test.rb delete mode 100644 test/controllers/site_controller_test.rb delete mode 100644 test/controllers/smtp_controller_test.rb delete mode 100644 test/controllers/ssh_controller_test.rb delete mode 100644 test/controllers/tls_controller_test.rb delete mode 100644 test/controllers/xmpp_controller_test.rb delete mode 100644 test/fixtures/.keep delete mode 100644 test/helpers/.keep delete mode 100644 test/integration/.keep delete mode 100644 test/mailers/.keep delete mode 100644 test/models/.keep delete mode 100644 test/test_helper.rb diff --git a/test/controllers/.keep b/test/controllers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/controllers/check_controller_test.rb b/test/controllers/check_controller_test.rb deleted file mode 100644 index d190301..0000000 --- a/test/controllers/check_controller_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class CheckControllerTest < ActionController::TestCase -end diff --git a/test/controllers/https_controller_test.rb b/test/controllers/https_controller_test.rb deleted file mode 100644 index bbb6d75..0000000 --- a/test/controllers/https_controller_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class HttpsControllerTest < ActionController::TestCase -end diff --git a/test/controllers/site_controller_test.rb b/test/controllers/site_controller_test.rb deleted file mode 100644 index 482dc85..0000000 --- a/test/controllers/site_controller_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class SiteControllerTest < ActionController::TestCase -end diff --git a/test/controllers/smtp_controller_test.rb b/test/controllers/smtp_controller_test.rb deleted file mode 100644 index 6b25dfd..0000000 --- a/test/controllers/smtp_controller_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class SmtpControllerTest < ActionController::TestCase -end diff --git a/test/controllers/ssh_controller_test.rb b/test/controllers/ssh_controller_test.rb deleted file mode 100644 index a2e7410..0000000 --- a/test/controllers/ssh_controller_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class SshControllerTest < ActionController::TestCase -end diff --git a/test/controllers/tls_controller_test.rb b/test/controllers/tls_controller_test.rb deleted file mode 100644 index a3caff8..0000000 --- a/test/controllers/tls_controller_test.rb +++ /dev/null @@ -1,19 +0,0 @@ -require 'test_helper' - -class TlsControllerTest < ActionController::TestCase - test "should get index" do - get :index - assert_response :success - end - - test "should get show" do - get :show - assert_response :success - end - - test "should get refresh" do - get :refresh - assert_response :success - end - -end diff --git a/test/controllers/xmpp_controller_test.rb b/test/controllers/xmpp_controller_test.rb deleted file mode 100644 index 0e78ccb..0000000 --- a/test/controllers/xmpp_controller_test.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'test_helper' - -class XmppControllerTest < ActionController::TestCase -end diff --git a/test/fixtures/.keep b/test/fixtures/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/helpers/.keep b/test/helpers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/integration/.keep b/test/integration/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/mailers/.keep b/test/mailers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/models/.keep b/test/models/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/test_helper.rb b/test/test_helper.rb deleted file mode 100644 index 0f359de..0000000 --- a/test/test_helper.rb +++ /dev/null @@ -1,3 +0,0 @@ -ENV['RAILS_ENV'] ||= 'test' -require File.expand_path('../../config/environment', __FILE__) -require 'rails/test_help'