NAME
Data::Comparable - present your object for comparison purposes
SYNOPSIS
use base 'Data::Comparable';
sub prepare_comparable {
my $self = shift;
$self->SUPER::prepare_comparable(@_);
delete $self->{some_temp_value};
$self->items; # autovivify;
}
# in some test file:
use Test::Differences;
eq_or_diff($x->comparable, $y->comparable, 'objects are equal');
DESCRIPTION
When you define a class, it may not be so straightforward to compare two objects of that class. For example, you want to compare object $x
to object $y
. You would like to use is_deeply()
from Test::More, but it complains that some hash keys are undef in one object but completely missing in the other. That is easily solved by autovivifying the keys in question. Also, some hash keys might be irrelevant to comparison - that is, you still consider two objects to be equal even though they differ in some hash keys.
This is where Data::Comparable can help. It enables you to define how your object wants to look like when it is being passed to some deep comparison function like Test::More::is_deeply()
or Test::Differences::eq_or_diff()
. If your class inherits from Data::Comparable, it gets a method called comparable()
, which you can call when comparing it. That is, you don't compare the actual objects, but their comparable versions.
To define the comparable version of your object, your class has to implement the prepare_comparable()
method. There you can autovivify any hash keys you like or tweak your object in any way you need to make it comparable.
TAGS
If you talk about this module in blogs, on del.icio.us or anywhere else, please use the datacomparable
tag.
BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to bug-data-comparable@rt.cpan.org
, or through the web interface at http://rt.cpan.org.
INSTALLATION
See perlmodinstall for information and options on installing Perl modules.
AVAILABILITY
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>.
AUTHOR
Marcel Grünauer, <marcel@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2007 by Marcel Grünauer
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.