Artifact 08581d626baf829d5dbea2fdb1f8d71532de4fb1:
- File s2/unit2/100-000-vtbl-settingsmetadata.s2 — part of check-in [8eb7c26910] at 2014-10-25 11:14:34 on branch trunk — added some basic tests for the new vtables, minor build tweak to allow us to skip the core s2 unit tests while developing fossil unit tests. (user: stephan size: 472) [more...]
const f = Fossil.Context.new().openCheckout(); f.db.transaction(proc(){ const db = this; var count = 0; db.each({ sql: 'select * from settingsmetadata', callback: proc(){ ++count; if(1===rowNumber){ //print(__FLC,columnNames); affirm 7 === columnNames.length(); /* TODO: check column names, once they're final */ } } }); affirm count > 10; });