do not load MooseX::SimpleConfig unconditionally
Karen Etheridge [Mon, 4 Feb 2013 18:24:46 +0000 (10:24 -0800)]
ChangeLog
t/05_default_sub.t
t/06_path_tiny.t

index eee03ec..73771cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Revision history for Perl extension MooseX::ConfigFromFile
 
+    - fixed tests to not load optional dependencies
+
 0.06  2013-02-03 (Karen Etheridge)
     - the configfile attribute is now a Path::Tiny, not a Path::Class
     (coercions from strings are still supported, and now also from any other
index 122c263..956bf6a 100644 (file)
@@ -1,6 +1,7 @@
 use strict;
 use warnings;
 
+use Test::Requires 'MooseX::SimpleConfig';      # skip all if not reuqired
 use Test::More tests => 10;
 use Test::Fatal;
 use Test::Deep '!blessed';
index 24c45ae..3f88c70 100644 (file)
@@ -1,6 +1,7 @@
 use strict;
 use warnings;
 
+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';