diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb deleted file mode 100644 index cee29fd..0000000 --- a/test/application_system_test_case.rb +++ /dev/null @@ -1,5 +0,0 @@ -require "test_helper" - -class ApplicationSystemTestCase < ActionDispatch::SystemTestCase - driven_by :selenium, using: :headless_chrome, screen_size: [ 1400, 1400 ] -end diff --git a/test/controllers/.keep b/test/controllers/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/controllers/moods_controller_test.rb b/test/controllers/moods_controller_test.rb deleted file mode 100644 index 90996fe..0000000 --- a/test/controllers/moods_controller_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require "test_helper" - -class MoodsControllerTest < ActionDispatch::IntegrationTest - # test "the truth" do - # assert true - # end -end diff --git a/test/controllers/rfid_tags_controller_test.rb b/test/controllers/rfid_tags_controller_test.rb deleted file mode 100644 index 3ccfbe3..0000000 --- a/test/controllers/rfid_tags_controller_test.rb +++ /dev/null @@ -1,8 +0,0 @@ -require "test_helper" - -class RfidTagsControllerTest < ActionDispatch::IntegrationTest - test "should get post" do - get rfid_tags_post_url - assert_response :success - end -end diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep deleted file mode 100644 index e69de29..0000000 diff --git a/test/fixtures/moods.yml b/test/fixtures/moods.yml deleted file mode 100644 index 79e8d8d..0000000 --- a/test/fixtures/moods.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - mode: MyString - recorded_at: 2025-07-07 11:03:44 - -two: - mode: MyString - recorded_at: 2025-07-07 11:03:44 diff --git a/test/fixtures/rfid_tags.yml b/test/fixtures/rfid_tags.yml deleted file mode 100644 index 42a3abe..0000000 --- a/test/fixtures/rfid_tags.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - identifier: MyString - mode: MyString - -two: - identifier: MyString - mode: MyString 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/models/mood_test.rb b/test/models/mood_test.rb deleted file mode 100644 index d8c61b9..0000000 --- a/test/models/mood_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require "test_helper" - -class MoodTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/models/rfid_tag_test.rb b/test/models/rfid_tag_test.rb deleted file mode 100644 index 836a282..0000000 --- a/test/models/rfid_tag_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require "test_helper" - -class RfidTagTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/system/.keep b/test/system/.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 0c22470..0000000 --- a/test/test_helper.rb +++ /dev/null @@ -1,15 +0,0 @@ -ENV["RAILS_ENV"] ||= "test" -require_relative "../config/environment" -require "rails/test_help" - -module ActiveSupport - class TestCase - # Run tests in parallel with specified workers - parallelize(workers: :number_of_processors) - - # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. - fixtures :all - - # Add more helper methods to be used by all tests here... - end -end