Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3284/t
Modified Files:
ext.t
Log Message:
Integrate from branch
Index: ext.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/ext.t,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ext.t 23 Feb 2005 11:59:13 -0000 1.14
+++ ext.t 23 Mar 2005 01:30:54 -0000 1.15
@@ -86,9 +86,9 @@
{
# Make sure read_args() functions properly as a class method
- my @args = qw(foo=bar --food bard);
+ my @args = qw(foo=bar --food bard --foods=bards);
my ($args) = Module::Build->read_args(@args);
- is_deeply($args, {foo => 'bar', food => 'bard', ARGV => []});
+ is_deeply($args, {foo => 'bar', food => 'bard', foods => 'bards', ARGV => []});
}
{
|