Update of /cvsroot/openinteract/OpenInteract2/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9184/t
Modified Files:
config_package.t
Log Message:
Rename second use of @names to @alt_names
Index: config_package.t
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/t/config_package.t,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** config_package.t 8 Feb 2005 01:48:21 -0000 1.10
--- config_package.t 8 Feb 2005 13:30:15 -0000 1.11
***************
*** 66,75 ****
'Foo Bar', 'Bar Foo (ba...@fo...)',
] );
! my @names = $c->author_names;
! is( scalar @names, 2,
'Number of alt author names returned' );
! is( $names[0], 'Foo Bar',
'First alt result from author_names()' );
! is( $names[1], 'Bar Foo',
'Second alt result from author_names()' );
my @emails = $c->author_emails;
--- 66,75 ----
'Foo Bar', 'Bar Foo (ba...@fo...)',
] );
! my @alt_names = $c->author_names;
! is( scalar @alt_names, 2,
'Number of alt author names returned' );
! is( $alt_names[0], 'Foo Bar',
'First alt result from author_names()' );
! is( $alt_names[1], 'Bar Foo',
'Second alt result from author_names()' );
my @emails = $c->author_emails;
|