mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -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');
|
|
|