1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00
DBD-SQLite-SQLcipher/t/99cleanup.t
2009-01-24 09:59:18 +00:00

6 lines
81 B
Raku

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