Removed the generated files Makefile, MANIFEST, META.yml, SIGNATURE, and t/Config.pm.

This commit is contained in:
2021-02-08 09:56:43 +08:00
parent aa4f7a837f
commit 2bae555926
5 changed files with 0 additions and 1045 deletions

View File

@ -1,20 +0,0 @@
package t::Config;
$test_db = 'test';
@drivers = qw/mysql Pg/;
%driver = (mysql => {
test => {
p => '',u => '',dsn => 'DBI:mysql:database=test',},
dbframework_catalog => {
p => '',u => '',dsn => 'DBI:mysql:database=dbframework_catalog',},
},
Pg => {
test => {
p => '',u => '',dsn => 'DBI:Pg:dbname=test',},
dbframework_catalog => {
p => '',u => '',dsn => 'DBI:Pg:dbname=dbframework_catalog',},
},
);
1;