File: 20_subclass.t

package info (click to toggle)
libyaml-tiny-perl 1.51-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 380 kB
  • sloc: perl: 2,482; makefile: 45
file content (56 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (2)
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
56
#!/usr/bin/perl

# Testing documents that should fail

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use File::Spec::Functions ':ALL';
use t::lib::Test;
use Test::More tests => 1;





#####################################################################
# Customized Class

SCOPE: {
	package Foo;

	use YAML::Tiny;

	use vars qw{@ISA};
	BEGIN {
		@ISA = 'YAML::Tiny';
	}

	sub _write_scalar {
		my $self   = shift;
		my $string = shift;
		my $indent = shift;
		if ( defined $indent ) {
			return "'$indent'";
		} else {
			return 'undef';
		}
	}

	1;
}





#####################################################################
# Generate the value

my $object = Foo->new(
	{ foo => 'bar' }
);
is( $object->write_string, "---\nfoo: '1'\n", 'Subclassing works' );