From 27f21ab77595d1e755da52e17432b68ef096065f Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Thu, 18 Jan 2024 21:42:20 -0800 Subject: [PATCH] Delete unused test directory Until we're actually using the little helpers and scaffolding code, let's just not have the clutter! --- test/performance/browsing_test.rb | 9 --------- test/test_helper.rb | 13 ------------- 2 files changed, 22 deletions(-) delete mode 100644 test/performance/browsing_test.rb delete mode 100644 test/test_helper.rb diff --git a/test/performance/browsing_test.rb b/test/performance/browsing_test.rb deleted file mode 100644 index 867fc8c9..00000000 --- a/test/performance/browsing_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'test_helper' -require 'rails/performance_test_help' - -# Profiling results for each test method are written to tmp/performance. -class BrowsingTest < ActionDispatch::PerformanceTest - def test_homepage - get '/' - end -end diff --git a/test/test_helper.rb b/test/test_helper.rb deleted file mode 100644 index 8bf1192f..00000000 --- a/test/test_helper.rb +++ /dev/null @@ -1,13 +0,0 @@ -ENV["RAILS_ENV"] = "test" -require File.expand_path('../../config/environment', __FILE__) -require 'rails/test_help' - -class ActiveSupport::TestCase - # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order. - # - # Note: You'll currently still have to declare fixtures explicitly in integration tests - # -- they do not yet inherit this setting - fixtures :all - - # Add more helper methods to be used by all tests here... -end