]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Test "use autovivification"
authorVincent Pit <vince@profvince.com>
Wed, 17 Jun 2009 14:22:48 +0000 (16:22 +0200)
committerVincent Pit <vince@profvince.com>
Wed, 17 Jun 2009 14:22:48 +0000 (16:22 +0200)
t/20-hash.t
t/21-array.t

index d4cf269294168217a144db58494a7349c0aefdf3..aac9f975621c2580c2b10c13254c8a629afa8787 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 6 * 3 * 270;
+use Test::More tests => 6 * 3 * 274;
 
 use lib 't/lib';
 use autovivification::TestCases;
@@ -25,6 +25,11 @@ $x # $x->{a} # '', undef, { }   # +exists
 $x # $x->{a} # '', undef, { }   # +delete
 $x # $x->{a} # '', undef, { }   # +store
 
+$x # $x->{a} # '', undef, { }   # -fetch
+$x # $x->{a} # '', undef, { }   # +fetch -fetch
+$x # $x->{a} # '', undef, undef # -fetch +fetch
+$x # $x->{a} # '', undef, undef # +fetch -exists
+
 $x # $x->{a} # qr/^Reference vivification forbidden/, undef, undef # +strict +fetch
 $x # $x->{a} # '', undef, { } # +strict +exists
 $x # $x->{a} # '', undef, { } # +strict +delete
index bf843d6e3f02b645bafa2b7c13b429b99354d8ad..eeb88117ae16a241099879b2924e4ca31a8553c4 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 6 * 3 * 270;
+use Test::More tests => 6 * 3 * 274;
 
 use lib 't/lib';
 use autovivification::TestCases;
@@ -25,6 +25,11 @@ $x # $x->[0] # '', undef, [ ] # +exists
 $x # $x->[0] # '', undef, [ ] # +delete
 $x # $x->[0] # '', undef, [ ] # +store
 
+$x # $x->[0] # '', undef, [ ] # -fetch
+$x # $x->[0] # '', undef, [ ] # +fetch -fetch
+$x # $x->[0] # '', undef, undef # -fetch +fetch
+$x # $x->[0] # '', undef, undef # +fetch -exists
+
 $x # $x->[0] # qr/^Reference vivification forbidden/, undef, undef # +strict +fetch
 $x # $x->[0] # '', undef, [ ] # +strict +exists
 $x # $x->[0] # '', undef, [ ] # +strict +delete