From: Torbjørn Lindahl Date: Mon, 13 Jan 2014 18:40:45 +0000 (+0100) Subject: cleaning up test app conf files, keeping them .pl only X-Git-Tag: 0.33~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7d6cd3d6ef7fa948efc97568665ed270a946a147;hp=7ee5312062eb19df192a5345e819dca5531335e8;p=catagits%2FCatalyst-Plugin-ConfigLoader.git cleaning up test app conf files, keeping them .pl only --- diff --git a/t/lib/TestApp1/customconfig.conf b/t/lib/TestApp1/customconfig.conf deleted file mode 100644 index 3503495..0000000 --- a/t/lib/TestApp1/customconfig.conf +++ /dev/null @@ -1 +0,0 @@ -bar = baz \ No newline at end of file diff --git a/t/lib/TestApp1/customconfig.pl b/t/lib/TestApp1/customconfig.pl new file mode 100644 index 0000000..840708d --- /dev/null +++ b/t/lib/TestApp1/customconfig.pl @@ -0,0 +1,3 @@ +{ + bar => "baz" +} diff --git a/t/lib/TestApp2/customconfig.conf b/t/lib/TestApp2/customconfig.conf deleted file mode 100644 index 57ac742..0000000 --- a/t/lib/TestApp2/customconfig.conf +++ /dev/null @@ -1 +0,0 @@ -bar = baz2 \ No newline at end of file diff --git a/t/lib/TestApp2/customconfig.pl b/t/lib/TestApp2/customconfig.pl new file mode 100644 index 0000000..f03d4e9 --- /dev/null +++ b/t/lib/TestApp2/customconfig.pl @@ -0,0 +1,3 @@ +{ + bar => "baz2" +} diff --git a/t/lib/TestApp3/config/testapp3.conf b/t/lib/TestApp3/config/testapp3.conf deleted file mode 100644 index c7f8d7c..0000000 --- a/t/lib/TestApp3/config/testapp3.conf +++ /dev/null @@ -1 +0,0 @@ -test3_conf2 = a_value diff --git a/t/lib/TestApp3/config/testapp3.yml b/t/lib/TestApp3/config/testapp3.yml deleted file mode 100644 index 6d8ad68..0000000 --- a/t/lib/TestApp3/config/testapp3.yml +++ /dev/null @@ -1 +0,0 @@ -test3_conf1: a_value diff --git a/t/lib/TestApp4/config.d/testapp4.conf b/t/lib/TestApp4/config.d/testapp4.conf deleted file mode 100644 index c7395eb..0000000 --- a/t/lib/TestApp4/config.d/testapp4.conf +++ /dev/null @@ -1 +0,0 @@ -test4_conf2 = a_value diff --git a/t/lib/TestApp4/config.d/testapp4.yml b/t/lib/TestApp4/config.d/testapp4.yml deleted file mode 100644 index f6bcea2..0000000 --- a/t/lib/TestApp4/config.d/testapp4.yml +++ /dev/null @@ -1 +0,0 @@ -test4_conf1: a_value