Revision history for Perl extension Class-MOP.
+0.40
+
+ * t/
+ ~ marked a test in 003_methods.t as TODO
+ for perl 5.9.5
+
0.39 Mon. June 18, 2007
* Class::MOP::Immutable
- added make_metaclass_mutable + docs (groditi)
# now check all our other items ...
-ok($Foo->has_method('FOO_CONSTANT'), '... Foo->has_method(FOO_CONSTANT) (defined w/ use constant)');
+TODO: {
+ local $TODO = "\$] > 5.9.5" if $] > 5.009005;
+ ok($Foo->has_method('FOO_CONSTANT'), '... Foo->has_method(FOO_CONSTANT) (defined w/ use constant)');
+}
ok($Foo->has_method('bar'), '... Foo->has_method(bar) (defined in Foo)');
ok($Foo->has_method('baz'), '... Foo->has_method(baz) (typeglob aliased within Foo)');
ok($Foo->has_method('floob'), '... Foo->has_method(floob) (defined in Foo:: using symbol tables and Sub::Name w/out package name)');