diff options
author | James E Keenan <jkeenan@cpan.org> | 2012-11-17 12:40:44 -0600 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2012-11-29 21:00:32 -0500 |
commit | de9564ec3e951401d41e1055b310cf86416e9d7f (patch) | |
tree | f24cf722df91280bc1a76583cf187ae88c539bf5 /t/run | |
parent | c3857f2299e371b08650d7fbe90d20833900fcca (diff) | |
download | perl-de9564ec3e951401d41e1055b310cf86416e9d7f.tar.gz |
t/run/switchx.t: Add descriptions to tests lacking them.
The tests which lacked descriptions are in sample files used by the test file.
Better description as suggested by Lukas Mai.
For: RT #115782
Diffstat (limited to 't/run')
-rw-r--r-- | t/run/switchx.aux | 4 | ||||
-rw-r--r-- | t/run/switchx2.aux | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/t/run/switchx.aux b/t/run/switchx.aux index 0db6103ee2..b59df4a0ed 100644 --- a/t/run/switchx.aux +++ b/t/run/switchx.aux @@ -19,9 +19,9 @@ still not perl print "1..7"; if (-f 'run/switchx.aux') { - print "ok 1"; + print "ok 1 - Test file exists"; } -print "ok 2"; +print "ok 2 - Test file utilized"; # other tests are in switchx2.aux __END__ diff --git a/t/run/switchx2.aux b/t/run/switchx2.aux index c1fb6ee65d..6d54a2d202 100644 --- a/t/run/switchx2.aux +++ b/t/run/switchx2.aux @@ -21,10 +21,10 @@ if [[ -z $FOO ]]; then echo 'not ok 1'; fi # These lines get executed my $test = $ARGV[0]; if (-f 'switchx.t') { - print("ok $test"); + print("ok $test - perl -l option tested"); } $test++; -print "ok $test"; +print "ok $test - Second test file utilized"; __END__ |