Clean empty test

sites
aeris 1 year ago
parent ae0223186c
commit ac4345856c
  1. 0
      test/controllers/.keep
  2. 4
      test/controllers/check_controller_test.rb
  3. 4
      test/controllers/https_controller_test.rb
  4. 4
      test/controllers/site_controller_test.rb
  5. 4
      test/controllers/smtp_controller_test.rb
  6. 4
      test/controllers/ssh_controller_test.rb
  7. 19
      test/controllers/tls_controller_test.rb
  8. 4
      test/controllers/xmpp_controller_test.rb
  9. 0
      test/fixtures/.keep
  10. 0
      test/helpers/.keep
  11. 0
      test/integration/.keep
  12. 0
      test/mailers/.keep
  13. 0
      test/models/.keep
  14. 3
      test/test_helper.rb

@ -1,4 +0,0 @@
require 'test_helper'
class CheckControllerTest < ActionController::TestCase
end

@ -1,4 +0,0 @@
require 'test_helper'
class HttpsControllerTest < ActionController::TestCase
end

@ -1,4 +0,0 @@
require 'test_helper'
class SiteControllerTest < ActionController::TestCase
end

@ -1,4 +0,0 @@
require 'test_helper'
class SmtpControllerTest < ActionController::TestCase
end

@ -1,4 +0,0 @@
require 'test_helper'
class SshControllerTest < ActionController::TestCase
end

@ -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

@ -1,4 +0,0 @@
require 'test_helper'
class XmppControllerTest < ActionController::TestCase
end

@ -1,3 +0,0 @@
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
Loading…
Cancel
Save