Skip to content

Commit

Permalink
Use temp file for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kjetilk committed Mar 21, 2019
1 parent 5c81354 commit abdc704
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Test/Attean/Store/Filesystem/Role/CreateStore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ sub create_store {
my $self = shift;
my %args = @_;
my $quads = $args{quads} // [];
my $tmpdir = Path::Tiny->tempdir; #path('/tmp/test/')->absolute;
my $tmpdir = Path::Tiny->tempdir;
# my $tmpdir = path('/tmp/test/')->absolute;
my $store = Attean->get_store('Filesystem')->new(
graph_dir => $tmpdir
);
Expand Down

0 comments on commit abdc704

Please sign in to comment.