diff --git a/basis/db/sqlite/sqlite-tests.factor b/basis/db/sqlite/sqlite-tests.factor index b6e756a3dd..8802a112bd 100644 --- a/basis/db/sqlite/sqlite-tests.factor +++ b/basis/db/sqlite/sqlite-tests.factor @@ -1,10 +1,10 @@ USING: io io.files io.files.temp io.directories io.launcher kernel namespaces prettyprint tools.test db.sqlite db sequences continuations db.types db.tuples unicode.case accessors arrays -sorting ; +sorting layouts ; IN: db.sqlite.tests -: db-path ( -- path ) "test.db" temp-file ; +: db-path ( -- path ) "test-" cell number>string ".db" 3append temp-file ; : test.db ( -- sqlite-db ) db-path ; [ ] [ [ db-path delete-file ] ignore-errors ] unit-test