mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 22:58:17 -04:00
7 lines
93 B
Perl
7 lines
93 B
Perl
use strict;
|
|
use Test;
|
|
BEGIN { plan tests => 2 }
|
|
ok(-e 'foo');
|
|
unlink('foo');
|
|
ok(!-e 'foo');
|
|
|