From 6c65a66835d34c2c020a908447b9fcd35f6c5b69 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 25 Apr 2024 20:36:37 +0900 Subject: [PATCH] Forgotten to remove the test class runner --- t/run_test_class_tests.t | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 t/run_test_class_tests.t diff --git a/t/run_test_class_tests.t b/t/run_test_class_tests.t deleted file mode 100644 index 3bc4fca53..000000000 --- a/t/run_test_class_tests.t +++ /dev/null @@ -1,25 +0,0 @@ -#!perl - -use strict; -use warnings; - -use Test::Requires qw(Test::mysqld); -use Test::Requires qw(File::Which); - -BEGIN { - unless (File::Which::which 'mysql') { - Test::Builder->new->skip_all("no mysql found, needed for this test") - } -} - -use lib 't/lib'; -use TestSetup; - -use Test::Class::Load 't/test_classes/'; - -if (@ARGV) { - Test::Class->runtests(@ARGV); -} else { - Test::Class->runtests; -} -