summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/test
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-10-13 04:45:02 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-10-13 04:45:02 +0000
commitdec8c49d8e46c8454d58c0dc8a84bfd49367b89d (patch)
tree1df05d83fbfdc04706e144179a4718767f04caa7 /perl_checker.src/test
parent162f86dcdf252a8ba4b43c8f11ca248a58d5c56a (diff)
downloadperl-MDK-Common-dec8c49d8e46c8454d58c0dc8a84bfd49367b89d.tar
perl-MDK-Common-dec8c49d8e46c8454d58c0dc8a84bfd49367b89d.tar.gz
perl-MDK-Common-dec8c49d8e46c8454d58c0dc8a84bfd49367b89d.tar.bz2
perl-MDK-Common-dec8c49d8e46c8454d58c0dc8a84bfd49367b89d.tar.xz
perl-MDK-Common-dec8c49d8e46c8454d58c0dc8a84bfd49367b89d.zip
- check push arguments
- add a test for pop arguments
Diffstat (limited to 'perl_checker.src/test')
-rw-r--r--perl_checker.src/test/various_errors.t8
1 files changed, 8 insertions, 0 deletions
diff --git a/perl_checker.src/test/various_errors.t b/perl_checker.src/test/various_errors.t
index af21eb4..901612f 100644
--- a/perl_checker.src/test/various_errors.t
+++ b/perl_checker.src/test/various_errors.t
@@ -25,6 +25,14 @@ join(@l) first argument of join() must be a scal
join(',', 'foo') join('...', $foo) is the same as $foo
+push @l you must give some arguments to push
+
+push $xxx, 1 push is expecting an array
+
+pop @l, 1 pop is expecting an array and nothing else
+
+pop $xxx pop is expecting an array and nothing else
+
system(qq(foo "$xxx")) instead of quoting parameters you should give a list of arguments
my (@l2, $xxx) = @l; @l2 takes all the arguments, $xxx is undef in any case