diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-07-06 10:15:27 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-07-06 10:15:27 +0200 |
commit | 3cc88b443be12b243870e35ddc335a96be6499bb (patch) | |
tree | 2e2047a1b5b5c3ea236f880188dd796810510687 /t/25-app-raps2-basic.t | |
parent | 20907d84f16d74874a61c61cb8698c79e96f04ff (diff) |
Merge t/25-app-raps2-basic and t/29-app-raps2-store
Diffstat (limited to 't/25-app-raps2-basic.t')
-rw-r--r-- | t/25-app-raps2-basic.t | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/t/25-app-raps2-basic.t b/t/25-app-raps2-basic.t deleted file mode 100644 index 127f904..0000000 --- a/t/25-app-raps2-basic.t +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env perl -use strict; -use warnings; -use 5.010; - -use Test::More tests => 3; - -use_ok('App::Raps2'); - -my $r2 = App::Raps2->new( dont_touch_fs => 1, no_cli => 1 ); -isa_ok($r2, 'App::Raps2'); - -is_deeply( - $r2->file_to_hash('t/in/hash'), - { key => 'value', otherkey => 'othervalue' }, - 'file_to_hash works', -); |