summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2010-08-14 17:47:46 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2010-08-14 17:49:02 +0100
commit22afb09b13a6dc17f20388991422fdbe6166e3ed (patch)
tree2714ddeeda067353cd491c741ad93abae7ea919c /lib
parent809046db05742711d28ee1fbb0a0e63a4e73ed89 (diff)
downloadperl-22afb09b13a6dc17f20388991422fdbe6166e3ed.tar.gz
Made a number of tests TODO in lib/overload.t due to changes to Test-Simple
Feature Changes * is() and others will no longer stringify its arguments before comparing. Overloaded objects will make use of their eq overload rather than their "" overload. This can break tests of impolitely string overloaded objects. DateTime prior to 0.54 is the biggest example.
Diffstat (limited to 'lib')
-rw-r--r--lib/overload.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/overload.t b/lib/overload.t
index d116925f15..d63ff4d354 100644
--- a/lib/overload.t
+++ b/lib/overload.t
@@ -1358,7 +1358,9 @@ foreach my $op (qw(<=> == != < <= > >=)) {
$x = 4 unless !$no && !$yes; is($x, 4);
}
-{
+TODO: {
+ local $TODO = 'Test-Simple handling of overloads changed with 0.95_01';
+
use Scalar::Util 'weaken';
package Shklitza;