Differences From Artifact [1a8187c724]:
- File tests/simplerun/thebeginning.scm — part of check-in [51deb29dc4] at 2022-04-06 18:21:54 on branch v1.7001-multi-db-rb01 — fixed readonly detection (user: mmgraham, size: 1959) [annotate] [blame] [check-ins using]
To Artifact [f405496649]:
- File tests/simplerun/thebeginning.scm — part of check-in [fe6e866e85] at 2022-04-08 14:52:19 on branch v1.7001-multi-db-get-db — implemented db:get-db with extra runid arg (user: mmgraham, size: 2059) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
50 51 52 53 54 55 56 | ;; *************** db.scm tests **************** (define thisdbdat (db:open-db dbstruct #f)) (test #f #t (dbr:dbdat? thisdbdat)) | > > > | 50 51 52 53 54 55 56 57 58 59 | ;; *************** db.scm tests **************** (define thisdbdat (db:open-db dbstruct #f)) (test #f #t (dbr:dbdat? thisdbdat)) (test #f #t (dbr:subdb? (db:get-db dbstruct #f))) (test #f #t (dbr:subdb? (db:get-db dbstruct 1))) |