]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Cover a_ck_padsv()
authorVincent Pit <vince@profvince.com>
Fri, 19 Jun 2009 23:07:40 +0000 (01:07 +0200)
committerVincent Pit <vince@profvince.com>
Fri, 19 Jun 2009 23:07:40 +0000 (01:07 +0200)
MANIFEST
t/41-padsv.t [new file with mode: 0644]

index 979aa8803c502fa481ee57021eb6cfd3a3d07964..e8b9792a1661b53949c48b3571ee0f2044144981 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -13,6 +13,7 @@ t/21-hash-specific.t
 t/30-array.t
 t/31-array-fast.t
 t/40-scope.t
+t/41-padsv.t
 t/91-pod.t
 t/92-pod-coverage.t
 t/95-portability-files.t
diff --git a/t/41-padsv.t b/t/41-padsv.t
new file mode 100644 (file)
index 0000000..f656a3a
--- /dev/null
@@ -0,0 +1,18 @@
+#!perl -T
+
+use strict;
+use warnings;
+
+use Test::More tests => 4;
+
+my $buf = "abc\ndef\n";
+open my $x, '<', \$buf;
+
+# Do this one first so that the check functions are set up for the second
+my $res = eval 'no autovivification; <$x>';
+is $@,   '',      'padsv 1: no error';
+is $res, "abc\n", 'padsv 1: correct returned value';
+
+$res = eval '<$x>';
+is $@,   '',      'padsv 2: no error';
+is $res, "def\n", 'padsv 2: correct returned value';