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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
use strictures 1;
use MooseX::Declare
our $VERSION = 0.01;
class Test::Irssi {
use Term::VT102;
use Term::Terminfo;
use feature qw/say switch/;
use Data::Dump;
use IO::File;
has 'irssi_binary'
=> (
is => 'ro',
isa => 'Str',
required => 1,
);
has 'irssi_homedir'
=> (
is => 'ro',
isa => 'Str',
required => 1,
);
has 'terminal_width'
=> (
is => 'ro',
isa => 'Int',
required => 1,
default => 80,
);
has 'terminal_height'
=> (
is => 'ro',
isa => 'Int',
required => 1,
default => 24,
);
has 'logfile'
=> (
is => 'ro',
isa => 'Str',
required => 1,
default => 'irssi-test.log',
);
has '_logfile_fh'
=> (
is => 'ro',
isa => 'IO::File',
required => 1,
lazy => 1,
builder => '_build_logfile_fh',
);
method _build_logfile_fh {
my $fh = IO::File->new($self->logfile, 'w');
die "Couldn't open $logfile for writing: $!" unless defined $fh;
$fh->autoflush(1);
return $fh;
}
method log (Str $msg) {
say $self->_logfile_fh $msg;
}
}
__END__
=head1 NAME
Test::Irssi
=head1 ABSTRACT
Abstract goes here
=head1 SYNOPSIS
blah blah blah
|