add test counts, obviating done_testing
[gitmo/MooseX-Getopt.git] / t / 112_configfile_constructor_arg.t
index 7b55a83..1798a65 100644 (file)
@@ -7,6 +7,7 @@ use Test::Requires
 # respect the configfile value passed into the constructor.
 
 use Test::More tests => 2;
+use Path::Class;    # exports file, dir
 
 {
     package Foo;
@@ -19,11 +20,8 @@ use Test::More tests => 2;
     );
 }
 
-TODO:
 {
-    local $TODO = "doh, this doesn't work!";
-
-    my $configfile = 't/112_configfile_constructor_arg.yml';
+    my $configfile = file(qw(t 112_configfile_constructor_arg.yml))->stringify;
 
     my $obj = Foo->new_with_options(configfile => $configfile);