File: inline_subclass.t

package info (click to toggle)
libio-all-perl 0.87-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 712 kB
  • sloc: perl: 2,017; makefile: 5
file content (51 lines) | stat: -rw-r--r-- 845 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
use strict; use warnings;
use lib -e 't' ? 't' : 'test';

package IO::Dumper;
use IO::All -base;
use Data::Dumper;

our @EXPORT = 'io';

sub io { return IO::Dumper->new(@_) };

package IO::All::Filesys;
sub dump {
    my $self = shift;
    $self->print(Data::Dumper::Dumper(@_));
    return $self;
}

package main;
use Test::More tests => 5;
use IO_All_Test;

IO::Dumper->import;

my $hash = {
    red => 'square',
    yellow => 'circle',
    pink => 'triangle',
};

die if -f o_dir() . '/dump1';
my $io = io(o_dir() . '/dump1')->file->dump($hash);
ok(-f o_dir() . '/dump1');
ok($io->close);
ok(-s o_dir() . '/dump1');

my $VAR1;
my $a = do './' . (o_dir() . '/dump1');
my $b = eval join('',<DATA>);
is_deeply($a,$b);

ok($io->unlink);

del_output_dir();

__END__
$VAR1 = {
  'pink' => 'triangle',
  'red' => 'square',
  'yellow' => 'circle'
};