# Keep this < 1.00, so people can tell the fake
# mro.pm from the real one
-our $VERSION = '0.01';
+our $VERSION = '0.01_01';
BEGIN {
# Alias our private functions over to
This module never exports any functions. All calls must
be fully qualified with the C<mro::> prefix.
+=head1 VERSION 0.01_01
+
+This is the first dev release of this new module, and on top of that,
+the Perl 5.9.5 it seeks to provide compatibility with isn't even
+out yet. Consider it not fully stabilized for the time being.
+These interfaces are not necessarily nailed down yet.
+
=head1 Functions
=head2 mro::get_linear_isa($classname[, $type])
"get_linear_isa for GGG3",
);
-is(FFF3->testsub(), 'FFF3_first_in_dfs', 'dfs resolution pre-init');
+SKIP: {
+ skip "Does not work like this on 5.9.5+", 1 if $] > 5.009_004;
+ is(FFF3->testsub(), 'FFF3_first_in_dfs', 'dfs resolution pre-init');
+}
Class::C3::initialize();