]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
Test magical tags
authorVincent Pit <vince@profvince.com>
Thu, 5 Mar 2009 21:12:10 +0000 (22:12 +0100)
committerVincent Pit <vince@profvince.com>
Thu, 5 Mar 2009 21:12:10 +0000 (22:12 +0100)
t/22-magic.t

index 80bee6f757bee1b4dbb106e3b79b99ba5af80544..f1ec1f969e2f14285ca44d024cce1b9282169f22 100644 (file)
@@ -28,7 +28,7 @@ BEGIN {
 { package Str; }
 
 BEGIN {
- plan tests => 2 * 6;
+ plan tests => 2 * 8;
 }
 
 use Lexical::Types as => 'Lexical::Types::Test';
@@ -52,6 +52,12 @@ sub check (&$$;$) {
  return $want ? @ret : $ret[0];
 }
 
+sub zzz {
+ my $d = Variable::Magic::getdata($_[0], $Lexical::Types::Test::Str::wiz);
+ isnt $d,    undef,  'typed lexicals are tagged';
+ is ref($d), 'HASH', 'typed lexicals are correctly tagged';
+}
+
 for (1 .. 2) {
  my Str $x = "abc";
 
@@ -64,4 +70,6 @@ for (1 .. 2) {
  my Str $z;
  check { $z = "bar" . $x } $z, { set => 1 }, 'scalar assign';
  is $z, 'barabcfoo', 'scalar assign correctly';
+
+ zzz($z);
 }