1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 22:58:17 -04:00
DBD-SQLite-SQLcipher/t/99cleanup.t

7 lines
93 B
Perl

use strict;
use Test;
BEGIN { plan tests => 2 }
ok(-e 'foo');
unlink('foo');
ok(!-e 'foo');