Update of /cvsroot/poe/poe/tests/10_units/03_base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27317/tests/10_units/03_base
Modified Files:
11_assert_usage.t
Log Message:
Duplicated test, same test is a couple lines up verbatim.
Index: 11_assert_usage.t
===================================================================
RCS file: /cvsroot/poe/poe/tests/10_units/03_base/11_assert_usage.t,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** 11_assert_usage.t 2 Feb 2005 04:44:36 -0000 1.2
--- 11_assert_usage.t 15 May 2005 01:44:12 -0000 1.3
***************
*** 8,12 ****
use lib qw(./mylib);
! use Test::More tests => 54;
use Symbol qw(gensym);
--- 8,12 ----
use lib qw(./mylib);
! use Test::More tests => 53;
use Symbol qw(gensym);
***************
*** 63,72 ****
);
- eval { $poe_kernel->post(undef) };
- ok(
- $@ && $@ =~ /destination is undefined in post/,
- "destination undefined in post"
- );
-
eval { $poe_kernel->call(undef) };
ok(
--- 63,66 ----
|