remove unused tests

but tests MUST be written in the future!
This commit is contained in:
Christophe Robillard 2025-08-07 19:36:27 +02:00
parent 1d07af2882
commit aeac67fc30
15 changed files with 0 additions and 67 deletions

View file

@ -1,5 +0,0 @@
require "test_helper"
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
driven_by :selenium, using: :headless_chrome, screen_size: [ 1400, 1400 ]
end

View file

View file

@ -1,7 +0,0 @@
require "test_helper"
class MoodsControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end

View file

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

View file

View file

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

View file

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

View file

View file

View file

View file

View file

@ -1,7 +0,0 @@
require "test_helper"
class MoodTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

View file

@ -1,7 +0,0 @@
require "test_helper"
class RfidTagTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

View file

View file

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