Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15074
Modified Files:
extend.t
Log Message:
Don't require such a specific format for the error message (I like single quotes, not double here)
Index: extend.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/extend.t,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- extend.t 23 Mar 2005 01:53:23 -0000 1.9
+++ extend.t 10 Apr 2005 03:18:59 -0000 1.10
@@ -2,7 +2,7 @@
# Tests various ways to extend Module::Build, e.g. by subclassing.
-use Test::More tests => 45;
+use Test::More tests => 47;
use Module::Build;
ok 1;
@@ -73,7 +73,7 @@
# Catch an exception adding an existing property.
eval { __PACKAGE__->add_property('module_name')};
- like "$@", qr/Property "module_name" already exists/;
+ like "$@", qr/already exists/;
}
{
|