From: Karen Etheridge Date: Tue, 12 Feb 2013 20:18:59 +0000 (-0800) Subject: we define our own get_config_from_file - MooseX::SimpleConfig is NOT needed! X-Git-Tag: v0.10~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-ConfigFromFile.git;a=commitdiff_plain;h=e8e7174e5fbcaf83f2fdd7089f9ed05c37b559f5 we define our own get_config_from_file - MooseX::SimpleConfig is NOT needed! --- diff --git a/t/05_default_sub.t b/t/05_default_sub.t index 0160167..60bceff 100644 --- a/t/05_default_sub.t +++ b/t/05_default_sub.t @@ -1,7 +1,6 @@ use strict; use warnings FATAL => 'all'; -use Test::Requires 'MooseX::SimpleConfig'; # skip all if not reuqired use Test::More tests => 33; use Test::Fatal; use Test::Deep '!blessed'; @@ -17,7 +16,7 @@ my %constructor_args; { package Generic; use Moose; - with 'MooseX::SimpleConfig'; + with 'MooseX::ConfigFromFile'; sub get_config_from_file { my ($class, $file) = @_;