X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F080_meta_package.t;h=a5d55fa412e1429773a823c1ee663c5a073f7ce4;hb=fdea04e89892cf7f8bfc5287ac46506e0145a062;hp=2f4271c60f190b96aa55dac1284f035a5055e0ef;hpb=15273f3c0305b96e49dd34030b995623bcd670c5;p=gitmo%2FClass-MOP.git diff --git a/t/080_meta_package.t b/t/080_meta_package.t index 2f4271c..a5d55fa 100644 --- a/t/080_meta_package.t +++ b/t/080_meta_package.t @@ -1,21 +1,21 @@ -#!/usr/bin/perl - use strict; use warnings; -use Test::More tests => 97; +use Test::More; use Test::Exception; -BEGIN { - use_ok('Class::MOP'); - use_ok('Class::MOP::Package'); -} +use Class::MOP; +use Class::MOP::Package; + + +dies_ok { Class::MOP::Package->get_all_package_symbols } q{... can't call get_all_package_symbols() as a class method}; +dies_ok { Class::MOP::Package->name } q{... can't call name() as a class method}; { package Foo; use constant SOME_CONSTANT => 1; - + sub meta { Class::MOP::Package->initialize('Foo') } } @@ -30,7 +30,7 @@ lives_ok { Foo->meta->add_package_symbol('%foo' => { one => 1 }); } '... created %Foo::foo successfully'; -# ... scalar should NOT be created here +# ... scalar should NOT be created here ok(!Foo->meta->has_package_symbol('$foo'), '... SCALAR shouldnt have been created too'); ok(!Foo->meta->has_package_symbol('@foo'), '... ARRAY shouldnt have been created too'); @@ -57,9 +57,9 @@ $foo->{two} = 2; { no strict 'refs'; is(\%{'Foo::foo'}, Foo->meta->get_package_symbol('%foo'), '... our %foo is the same as the metas'); - + ok(exists ${'Foo::foo'}{two}, '... our %foo was updated correctly'); - is(${'Foo::foo'}{two}, 2, '... our %foo was updated correctly'); + is(${'Foo::foo'}{two}, 2, '... our %foo was updated correctly'); } # ---------------------------------------------------------------------- @@ -74,7 +74,7 @@ lives_ok { ok(defined($Foo::{bar}), '... the @bar slot was created successfully'); ok(Foo->meta->has_package_symbol('@bar'), '... the meta agrees'); -# ... why does this not work ... +# ... why does this not work ... ok(!Foo->meta->has_package_symbol('$bar'), '... SCALAR shouldnt have been created too'); ok(!Foo->meta->has_package_symbol('%bar'), '... HASH shouldnt have been created too'); @@ -104,14 +104,14 @@ ok(!Foo->meta->has_package_symbol('@baz'), '... ARRAY shouldnt have been created ok(!Foo->meta->has_package_symbol('%baz'), '... HASH shouldnt have been created too'); ok(!Foo->meta->has_package_symbol('&baz'), '... CODE shouldnt have been created too'); -is(${Foo->meta->get_package_symbol('$baz')}, 10, '... got the right value back'); +is(${Foo->meta->get_package_symbol('$baz')}, 10, '... got the right value back'); { no strict 'refs'; ${'Foo::baz'} = 1; is(${'Foo::baz'}, 1, '... our $baz was assigned to correctly'); - is(${Foo->meta->get_package_symbol('$baz')}, 1, '... the meta agrees'); + is(${Foo->meta->get_package_symbol('$baz')}, 1, '... the meta agrees'); } # ---------------------------------------------------------------------- @@ -186,9 +186,9 @@ is(Foo->meta->get_package_symbol('$foo'), $SCALAR, '... got the right value for { no strict 'refs'; ok(!defined(*{"Foo::foo"}{HASH}), '... the %foo slot has been removed successfully'); - ok(defined(*{"Foo::foo"}{ARRAY}), '... the @foo slot has NOT been removed'); - ok(defined(*{"Foo::foo"}{CODE}), '... the &foo slot has NOT been removed'); - ok(defined(${"Foo::foo"}), '... the $foo slot has NOT been removed'); + ok(defined(*{"Foo::foo"}{ARRAY}), '... the @foo slot has NOT been removed'); + ok(defined(*{"Foo::foo"}{CODE}), '... the &foo slot has NOT been removed'); + ok(defined(${"Foo::foo"}), '... the $foo slot has NOT been removed'); } lives_ok { @@ -205,10 +205,10 @@ is(Foo->meta->get_package_symbol('$foo'), $SCALAR, '... got the right value for { no strict 'refs'; - ok(!defined(*{"Foo::foo"}{HASH}), '... the %foo slot has been removed successfully'); - ok(!defined(*{"Foo::foo"}{CODE}), '... the &foo slot has now been removed'); - ok(defined(*{"Foo::foo"}{ARRAY}), '... the @foo slot has NOT been removed'); - ok(defined(${"Foo::foo"}), '... the $foo slot has NOT been removed'); + ok(!defined(*{"Foo::foo"}{HASH}), '... the %foo slot has been removed successfully'); + ok(!defined(*{"Foo::foo"}{CODE}), '... the &foo slot has now been removed'); + ok(defined(*{"Foo::foo"}{ARRAY}), '... the @foo slot has NOT been removed'); + ok(defined(${"Foo::foo"}), '... the $foo slot has NOT been removed'); } lives_ok { @@ -223,73 +223,58 @@ is(Foo->meta->get_package_symbol('@foo'), $ARRAY, '... got the right values for { no strict 'refs'; - ok(!defined(*{"Foo::foo"}{HASH}), '... the %foo slot has been removed successfully'); - ok(!defined(*{"Foo::foo"}{CODE}), '... the &foo slot has now been removed'); - ok(!defined(${"Foo::foo"}), '... the $foo slot has now been removed'); - ok(defined(*{"Foo::foo"}{ARRAY}), '... the @foo slot has NOT been removed'); + ok(!defined(*{"Foo::foo"}{HASH}), '... the %foo slot has been removed successfully'); + ok(!defined(*{"Foo::foo"}{CODE}), '... the &foo slot has now been removed'); + ok(!defined(${"Foo::foo"}), '... the $foo slot has now been removed'); + ok(defined(*{"Foo::foo"}{ARRAY}), '... the @foo slot has NOT been removed'); } # get_all_package_symbols { - my %syms = Foo->meta->get_all_package_symbols; + my $syms = Foo->meta->get_all_package_symbols; is_deeply( - [ sort keys %syms ], + [ sort keys %{ $syms } ], [ sort Foo->meta->list_all_package_symbols ], '... the fetched symbols are the same as the listed ones' - ); + ); } { - my %syms = Foo->meta->get_all_package_symbols('CODE'); + my $syms = Foo->meta->get_all_package_symbols('CODE'); is_deeply( - [ sort keys %syms ], + [ sort keys %{ $syms } ], [ sort Foo->meta->list_all_package_symbols('CODE') ], '... the fetched symbols are the same as the listed ones' ); - - foreach my $symbol (keys %syms) { - is($syms{$symbol}, Foo->meta->get_package_symbol('&' . $symbol), '... got the right symbol'); - } + + foreach my $symbol (keys %{ $syms }) { + is($syms->{$symbol}, Foo->meta->get_package_symbol('&' . $symbol), '... got the right symbol'); + } } { Foo->meta->add_package_symbol('%zork'); - my %syms = Foo->meta->get_all_package_symbols('HASH'); + my $syms = Foo->meta->get_all_package_symbols('HASH'); is_deeply( - [ sort keys %syms ], + [ sort keys %{ $syms } ], [ sort Foo->meta->list_all_package_symbols('HASH') ], '... the fetched symbols are the same as the listed ones' ); - foreach my $symbol (keys %syms) { - is($syms{$symbol}, Foo->meta->get_package_symbol('%' . $symbol), '... got the right symbol'); + foreach my $symbol (keys %{ $syms }) { + is($syms->{$symbol}, Foo->meta->get_package_symbol('%' . $symbol), '... got the right symbol'); } no warnings 'once'; is_deeply( - \%syms, + $syms, { zork => \%Foo::zork }, "got the right ones", ); } -# check some errors - -dies_ok { - Foo->meta->add_package_symbol('bar'); -} '... no sigil for bar'; - -dies_ok { - Foo->meta->remove_package_symbol('bar'); -} '... no sigil for bar'; - -dies_ok { - Foo->meta->get_package_symbol('bar'); -} '... no sigil for bar'; -dies_ok { - Foo->meta->has_package_symbol('bar'); -} '... no sigil for bar'; +done_testing;