1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# Testing documents that should fail
use strict;
use warnings;
use lib 't/lib/';
use Test::More 0.99;
use TestUtils;
use File::Spec::Functions ':ALL';
#####################################################################
# Customized Class
SCOPE: {
package Foo;
use YAML::Tiny;
use vars qw{@ISA};
BEGIN {
@ISA = 'YAML::Tiny';
}
# XXX-INGY subclasses should not use private methods… or if they
# do they should expect method name changes.
# sub _write_scalar {
sub _dump_scalar {
my $self = shift;
my $string = shift;
my $is_key = shift;
if ( defined $is_key ) {
return scalar reverse $string;
} else {
return $string;
}
}
1;
}
#####################################################################
# Generate the value
my $object = Foo->new(
{ foo => 'bar' }
);
is( $object->write_string, "---\noof: bar\n", 'Subclassing works' );
done_testing;
|