From fa6b3ad32f5bc144497a60c89f52f076a137ea93 Mon Sep 17 00:00:00 2001 From: Jan Grodowski Date: Fri, 13 Dec 2024 10:37:44 +0100 Subject: [PATCH] excluded files --- test/controllers/home_controller_test.rb | 4 ++++ test/test_helper.rb | 2 ++ 2 files changed, 6 insertions(+) diff --git a/test/controllers/home_controller_test.rb b/test/controllers/home_controller_test.rb index 929e84f..ae1534c 100644 --- a/test/controllers/home_controller_test.rb +++ b/test/controllers/home_controller_test.rb @@ -10,4 +10,8 @@ class HomeControllerTest < ActionDispatch::IntegrationTest get "/home?x=false" assert_equal 200, status end + + test "truth" do + assert_equal 200, 200 + end end diff --git a/test/test_helper.rb b/test/test_helper.rb index 431094d..0d44a04 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -19,5 +19,7 @@ class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. fixtures :all + puts "I'm untested" + # Add more helper methods to be used by all tests here... end