got rid of all the use_ok junk except for 000_load.t
[gitmo/Class-MOP.git] / t / 101_InstanceCountingClass_test.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 11;
7 use File::Spec;
8
9 BEGIN {use Class::MOP;    
10     require_ok(File::Spec->catfile('examples', 'InstanceCountingClass.pod'));
11 }
12
13 =pod
14
15 This is a trivial and contrived example of how to 
16 make a metaclass which will count all the instances
17 created. It is not meant to be anything more than 
18 a simple demonstration of how to make a metaclass.
19
20 =cut
21
22 {
23     package Foo;
24     
25     use metaclass 'InstanceCountingClass';
26     
27     sub new  {
28         my $class = shift;
29         $class->meta->new_object(@_);
30     }
31     
32     package Bar;
33     
34     our @ISA = ('Foo');
35 }
36
37 is(Foo->meta->get_count(), 0, '... our Foo count is 0');
38 is(Bar->meta->get_count(), 0, '... our Bar count is 0');
39
40 my $foo = Foo->new();
41 isa_ok($foo, 'Foo');
42
43 is(Foo->meta->get_count(), 1, '... our Foo count is now 1');
44 is(Bar->meta->get_count(), 0, '... our Bar count is still 0');
45
46 my $bar = Bar->new();
47 isa_ok($bar, 'Bar');
48
49 is(Foo->meta->get_count(), 1, '... our Foo count is still 1');
50 is(Bar->meta->get_count(), 1, '... our Bar count is now 1');
51
52 for (2 .. 10) {
53     Foo->new();
54 }
55
56 is(Foo->meta->get_count(), 10, '... our Foo count is now 10');    
57 is(Bar->meta->get_count(), 1, '... our Bar count is still 1');
58