Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-Simple CPAN distribution.

Report information
The Basics
Id: 16982
Status: resolved
Priority: 0/
Queue: Test-Simple

People
Owner: Nobody in particular
Requestors: ingy [...] ttul.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: is_deeply does not pay attention to object blessings
Hey Schwern, is_deeply([], bless []); is the simplest case I could find to show that is_deeply doesn't seem to care whether a node is blessed or not. Cheers, Ingy
Yep, this is a feature. is_deeply() compares the dereferenced values of references, the references themselves (except for their type) are ignored. This means aspects such as blessing and ties are not considered "differ- ent". For customizable comparisons, use Test::Deep. PS The proper bug queue is Test-Simple, not Test-More.