mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 14:48:32 -04:00
6 lines
81 B
Raku
6 lines
81 B
Raku
use Test;
|
|
BEGIN { plan tests => 2 }
|
|
ok(-e 'foo');
|
|
unlink('foo');
|
|
ok(!-e 'foo');
|
|
|