summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/lib/Class
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-12-03 02:43:04 +0000
committermillert <millert@openbsd.org>2003-12-03 02:43:04 +0000
commit8500990981f885cbe5e6a4958549cacc238b5ae6 (patch)
tree459d709ffae0599d6d549087d270bfb6d2fcf5e6 /gnu/usr.bin/perl/lib/Class
parentsync (diff)
downloadwireguard-openbsd-8500990981f885cbe5e6a4958549cacc238b5ae6.tar.xz
wireguard-openbsd-8500990981f885cbe5e6a4958549cacc238b5ae6.zip
perl 5.8.2 from CPAN
Diffstat (limited to 'gnu/usr.bin/perl/lib/Class')
-rw-r--r--gnu/usr.bin/perl/lib/Class/Struct.t100
1 files changed, 57 insertions, 43 deletions
diff --git a/gnu/usr.bin/perl/lib/Class/Struct.t b/gnu/usr.bin/perl/lib/Class/Struct.t
index 914132c7764..694d622d4d2 100644
--- a/gnu/usr.bin/perl/lib/Class/Struct.t
+++ b/gnu/usr.bin/perl/lib/Class/Struct.t
@@ -5,85 +5,99 @@ BEGIN {
@INC = '../lib';
}
-print "1..12\n";
-
+#
+# A couple of simple classes to use as struct elements.
+#
package aClass;
-
sub new { bless {}, shift }
-
sub meth { 42 }
package RecClass;
-
sub new { bless {}, shift }
+#
+# The first of our Class::Struct based objects.
+#
package MyObj;
-
use Class::Struct;
use Class::Struct 'struct'; # test out both forms
-
use Class::Struct SomeClass => { SomeElem => '$' };
struct( s => '$', a => '@', h => '%', c => 'aClass' );
-my $obj = MyObj->new;
+#
+# The second Class::Struct objects:
+# test the 'compile-time without package name' feature.
+#
+package MyOther;
+use Class::Struct s => '$', a => '@', h => '%', c => 'aClass';
-$obj->s('foo');
+#
+# back to main...
+#
+package main;
-print "not " unless $obj->s() eq 'foo';
-print "ok 1\n";
+use Test::More tests => 24;
-my $arf = $obj->a;
+my $obj = MyObj->new;
+isa_ok $obj, 'MyObj';
-print "not " unless ref $arf eq 'ARRAY';
-print "ok 2\n";
+$obj->s('foo');
+is $obj->s(), 'foo';
+isa_ok $obj->a, 'ARRAY';
$obj->a(2, 'secundus');
+is $obj->a(2), 'secundus';
-print "not " unless $obj->a(2) eq 'secundus';
-print "ok 3\n";
-
-my $hrf = $obj->h;
-
-print "not " unless ref $hrf eq 'HASH';
-print "ok 4\n";
+$obj->a([4,5,6]);
+is $obj->a(1), 5;
+isa_ok $obj->h, 'HASH';
$obj->h('x', 10);
+is $obj->h('x'), 10;
-print "not " unless $obj->h('x') == 10;
-print "ok 5\n";
-
-my $orf = $obj->c;
+$obj->h({h=>7,r=>8,f=>9});
+is $obj->h('r'), 8;
-print "not " if defined($orf);
-print "ok 6\n";
+is $obj->c, undef;
$obj = MyObj->new( c => aClass->new );
-$orf = $obj->c;
-
-print "not " if ref $orf ne 'aClass';
-print "ok 7\n";
+isa_ok $obj->c, 'aClass';
+is $obj->c->meth(), 42;
-print "not " unless $obj->c->meth() == 42;
-print "ok 8\n";
-my $obk = SomeClass->new();
+$obj = MyOther->new;
+isa_ok $obj, 'MyOther';
-$obk->SomeElem(123);
+$obj->s('foo');
+is $obj->s(), 'foo';
-print "not " unless $obk->SomeElem() == 123;
-print "ok 9\n";
+isa_ok $obj->a, 'ARRAY';
+$obj->a(2, 'secundus');
+is $obj->a(2), 'secundus';
$obj->a([4,5,6]);
+is $obj->a(1), 5;
-print "not " unless $obj->a(1) == 5;
-print "ok 10\n";
+isa_ok $obj->h, 'HASH';
+$obj->h('x', 10);
+is $obj->h('x'), 10;
$obj->h({h=>7,r=>8,f=>9});
+is $obj->h('r'), 8;
-print "not " unless $obj->h('r') == 8;
-print "ok 11\n";
+is $obj->c, undef;
+
+$obj = MyOther->new( c => aClass->new );
+isa_ok $obj->c, 'aClass';
+is $obj->c->meth(), 42;
+
+
+
+my $obk = SomeClass->new();
+$obk->SomeElem(123);
+is $obk->SomeElem(), 123;
-my $recobj = RecClass->new() or print "not ";
-print "ok 12\n";
+my $recobj = RecClass->new();
+isa_ok $recobj, 'RecClass';