From: Karen Etheridge <ether@cpan.org>
Date: Mon, 11 Feb 2013 17:07:33 +0000 (-0800)
Subject: remove silly test that does not show anything but adds more dependencies
X-Git-Tag: v0.09~2
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=236b170ea09ee565b8c2679b5ce182b3e8fd2612;p=gitmo%2FMooseX-ConfigFromFile.git

remove silly test that does not show anything but adds more dependencies
---

diff --git a/t/06_path_tiny.t b/t/06_path_tiny.t
deleted file mode 100644
index e44472d..0000000
--- a/t/06_path_tiny.t
+++ /dev/null
@@ -1,28 +0,0 @@
-use strict;
-use warnings FATAL => 'all';
-
-use Test::Requires 'MooseX::SimpleConfig';      # skip all if not reuqired
-use Test::More tests => 5;
-use Test::NoWarnings 1.04 ':early';
-use Path::Tiny 'path';
-use Path::Class 'file';
-
-{
-    package Generic;
-    use Moose;
-    with 'MooseX::SimpleConfig';
-    sub get_config_from_file { }
-}
-
-{
-    my $obj = Generic->new(configfile => path('i/do/not_exist'));
-    is($obj->configfile, 'i/do/not_exist', 'stringification returns path');
-    isa_ok($obj->configfile, 'Path::Tiny');
-}
-
-{
-    my $obj = Generic->new(configfile => file('i/do/not_exist'));
-    is($obj->configfile, 'i/do/not_exist', 'stringification returns path');
-    isa_ok($obj->configfile, 'Path::Tiny');
-}
-