diff options
author | markm <markm@FreeBSD.org> | 2002-03-16 20:14:31 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-03-16 20:14:31 +0000 |
commit | df2204f4cdf3fa64a0b2d36a33a3094944c9c4ab (patch) | |
tree | 1a8c861937509eca308e49c4f8940a22a169caf0 /contrib/perl5/t/lib/class-struct.t | |
parent | b878a8b4fc512ca76116a7012802d385208857c3 (diff) | |
parent | e624907b04b90475ab8fb7b93c15320db1969c09 (diff) | |
download | FreeBSD-src-df2204f4cdf3fa64a0b2d36a33a3094944c9c4ab.zip FreeBSD-src-df2204f4cdf3fa64a0b2d36a33a3094944c9c4ab.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r92444,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/perl5/t/lib/class-struct.t')
-rwxr-xr-x | contrib/perl5/t/lib/class-struct.t | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/contrib/perl5/t/lib/class-struct.t b/contrib/perl5/t/lib/class-struct.t new file mode 100755 index 0000000..26505ba --- /dev/null +++ b/contrib/perl5/t/lib/class-struct.t @@ -0,0 +1,66 @@ +#!./perl -w + +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; +} + +print "1..8\n"; + +package aClass; + +sub new { bless {}, shift } + +sub meth { 42 } + +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; + +$obj->s('foo'); + +print "not " unless $obj->s() eq 'foo'; +print "ok 1\n"; + +my $arf = $obj->a; + +print "not " unless ref $arf eq 'ARRAY'; +print "ok 2\n"; + +$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->h('x', 10); + +print "not " unless $obj->h('x') == 10; +print "ok 5\n"; + +my $orf = $obj->c; + +print "not " unless ref $orf eq 'aClass'; +print "ok 6\n"; + +print "not " unless $obj->c->meth() == 42; +print "ok 7\n"; + +my $obk = SomeClass->new(); + +$obk->SomeElem(123); + +print "not " unless $obk->SomeElem() == 123; +print "ok 8\n"; + |