diff options
Diffstat (limited to 't/25-app-raps2-basic.t')
-rw-r--r-- | t/25-app-raps2-basic.t | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/t/25-app-raps2-basic.t b/t/25-app-raps2-basic.t index 53aa51d..127f904 100644 --- a/t/25-app-raps2-basic.t +++ b/t/25-app-raps2-basic.t @@ -3,26 +3,13 @@ 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 Test::More tests => 3; use_ok('App::Raps2'); -my $r2 = App::Raps2->new( dont_touch_fs => 1 ); +my $r2 = App::Raps2->new( dont_touch_fs => 1, no_cli => 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' }, |