~vcs-imports/octopussy/main

« back to all changes in this revision

Viewing changes to t/Octopussy/Contact.t

  • Committer: Sebastien Thebert
  • Date: 2017-06-08 22:56:27 UTC
  • Revision ID: git-v1:4d48c32be0919ed14009ebac31db2aa245993522
File::Slurp -> Path::Tiny for Octopussy/Contact.pm

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
use strict;
10
10
use warnings;
11
11
 
12
 
use File::Path;
13
12
use FindBin;
14
13
use List::MoreUtils qw(any);
 
14
use Path::Tiny;
15
15
use Test::More;
16
16
 
17
17
use lib "$FindBin::Bin/../../lib";
82
82
ok((scalar @contacts) == (scalar @contacts2 + 1),
83
83
    'Octopussy::Contact::Remove()');
84
84
 
85
 
rmtree $DIR_CONTACTS;
 
85
path($DIR_CONTACTS)->remove_tree({safe => 0});
86
86
 
87
87
done_testing(1 + 5);
88
88