11 This test demonstrates that Moose will respect
12 a previously set @ISA using use base, and not
13 try to add Moose::Object to it.
15 However, this is extremely order sensitive as
16 this test also demonstrates.
25 sub foo { 'Foo::foo' }
31 sub new { (shift)->meta->new_object(@_) }
41 ok(!$bar->isa('Moose::Object'), '... Bar is not Moose::Object subclass');
46 isa_ok($baz, 'Moose::Object');