blob: ddea7fa629ea41847dc96db2daab821383c93a0f (
plain)
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
|
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use Test::More;
eval "use Test::MockObject";
plan skip_all => 'Test::MockObject required' if $@;
plan tests => 4;
my $mock = Test::MockObject->new();
$mock->fake_module(
'Term::ReadLine',
new => sub { return bless({}, $_[0]) },
);
use_ok('App::Raps2');
my $r2 = App::Raps2->new( dont_touch_fs => 1 );
isa_ok($r2, 'App::Raps2');
isa_ok($r2->ui(), 'App::Raps2::UI');
is_deeply(
{ $r2->file_to_hash('t/in/hash') },
{ key => 'value', otherkey => 'othervalue' },
'file_to_hash works',
);
|