X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Freverse-args.t;fp=t%2Freverse-args.t;h=16a2dfa94affbd278f00eb405d519e0d084c2d33;hb=69fbdb1a279690d6a36238a5a16488a44ebf1c90;hp=4b0086e0d01efd72bcf7db316d2d1161b4145446;hpb=406bfd3a105767f122e616652d720443d27e5995;p=gitmo%2FMooseX-Runnable.git diff --git a/t/reverse-args.t b/t/reverse-args.t index 4b0086e..16a2dfa 100644 --- a/t/reverse-args.t +++ b/t/reverse-args.t @@ -13,11 +13,12 @@ my $args = MooseX::Runnable::Util::ArgParser->new( local $^X = '/path/to/perl'; local $FindBin::Bin = '/path/to'; local $FindBin::Script = 'mx-run'; +local @INC = ('foobar'); my @cmdline = $args->guess_cmdline( perl_flags => ['--X--'], without_plugins => ['Plugout'], ); is join(' ', @cmdline), - "/path/to/perl --X-- /path/to/mx-run -Ilib -MFoo -MBar +Plugin --with-args -- MyApp --with args", + "/path/to/perl -Ifoobar --X-- /path/to/mx-run -Ilib -MFoo -MBar +Plugin --with-args -- MyApp --with args", 'cmdline reverses reasonably';