Group
Extension

Matches 2

Set-Hash ( D/DJ/DJBERG/Set-Hash-0.01.tar.gz, DJBERG, 2002; MetaCPAN )
Set-Hash/t/is_equal.t ( view source; MetaCPAN )
new(one=>1,two=>2,three=>3);
my $sh2 = Set::Hash->new(one=>1,two=>2,three=>3);
my $sh3 = Set::Hash->new(one=>4,two=>5,three=>6);

ok($sh1 == $sh2,"equals test");
isnt($sh1 == $sh3,"not equals test");
Set-Hash ( D/DJ/DJBERG/Set-Hash-0.01.tar.gz, DJBERG, 2002; MetaCPAN )
Set-Hash/t/not_equal.t ( view source; MetaCPAN )
new(one=>1,two=>2,three=>3);
my $sh2 = Set::Hash->new(one=>1,two=>2,three=>3);
my $sh3 = Set::Hash->new(one=>4,two=>5,three=>6);

isnt($sh1 != $sh2,"equals test");
ok($sh1 != $sh3,"not equals test");

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.