On Aug 27, 2004, at 2:08 PM, [EMAIL PROTECTED] wrote:
# doesn't match '(?-xism:(?:at\s+t\\\\errors\.t|t\\\\errors\.t\s+at)\s+line)'
# Failed test (t\errors.t at line 268)
# 'Package 'main' cannot create Class::Meta::Attribute objects at t\errors.t line 44
Bah, looks like another dumb cut-n-paste error. This patch should fix it:
--- t/errors.t.~1.11.~ Thu Aug 26 16:50:15 2004
+++ t/errors.t Mon Aug 30 17:25:27 2004
@@ -8,7 +8,7 @@
use strict;
use Test::More tests => 202;
use File::Spec;
-(my $fn = File::Spec->catfile('t', 'errors.t')) =~ s/\\/\\\\/g;
+my $fn = File::Spec->catfile('t', 'erorrs.t'); BEGIN {
main::use_ok('Class::Meta');This will be in the next release.
Regards,
David
