2025-03-18 02:21:06 +00:00
|
|
|
# vim: set et sta sw=4 ts=4 :
|
|
|
|
|
|
|
|
|
|
import
|
2025-07-13 13:10:33 -07:00
|
|
|
std/files,
|
2025-03-18 02:21:06 +00:00
|
|
|
std/paths
|
|
|
|
|
|
2025-11-04 09:06:11 -08:00
|
|
|
import lbug
|
2025-03-18 02:21:06 +00:00
|
|
|
|
|
|
|
|
const DATABASE_PATH = Path( "tmp/testdb" )
|
2025-07-13 13:10:33 -07:00
|
|
|
DATABASE_PATH.removeFile()
|
2025-03-18 02:21:06 +00:00
|
|
|
|
2025-11-04 09:06:11 -08:00
|
|
|
var db = newLbugDatabase( $DATABASE_PATH, lbugConfig( auto_checkpoint=false ) )
|
2025-03-18 02:21:06 +00:00
|
|
|
assert db.path == "tmp/testdb"
|
|
|
|
|
assert db.config.auto_checkpoint == false
|
|
|
|
|
|
2025-07-13 13:10:33 -07:00
|
|
|
DATABASE_PATH.removeFile()
|
2025-03-18 02:21:06 +00:00
|
|
|
|