in reply to Re: Test::More command-line arguments?
in thread Test::More command-line arguments?
Here's a simple script run with Perl 5.8.8:
Upon execution, I'm getting the following:#!/bin/env perl use strict; use warnings; use Test::More tests => 1; use Data::Dumper; print Data::Dumper->Dump([\@ARGV], [qw/ARGV/]); pass('placeholder');
$ prove -v t.t one two three t.t .... 1..1 $ARGV = []; ok 1 - placeholder ok Cannot determine source for one at /tools/oss/packages/x86_64-rhel5/pe +rl/5.8.8-64/lib/5.8.8/App/Prove.pm line 496 $
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Test::More command-line arguments?
by tobyink (Canon) on Sep 25, 2012 at 00:24 UTC | |
by Anonymous Monk on Sep 25, 2012 at 00:30 UTC | |
by Anonymous Monk on Sep 25, 2012 at 00:38 UTC | |
|
Re^3: Test::More command-line arguments?
by Anonymous Monk on Sep 25, 2012 at 00:22 UTC | |
by sbohning (Initiate) on Oct 14, 2021 at 21:39 UTC |