comparison third_party/sqlite3/tea/teaish.test.tcl @ 173:827c6ac504cd hg-web

Merged in default here.
author MrJuneJune <me@mrjunejune.com>
date Mon, 19 Jan 2026 18:59:10 -0800
parents 589bab390fb4
children
comparison
equal deleted inserted replaced
151:c033667da5f9 173:827c6ac504cd
1 test-expect 1.0-open {
2 sqlite3 db :memory:
3 } {}
4
5 test-assert 1.1-version-3.x {
6 [string match 3.* [db eval {select sqlite_version()}]]
7 }
8
9 test-expect 1.2-select {
10 db eval {select 'hi, world',1,2,3}
11 } {{hi, world} 1 2 3}
12
13
14 test-expect 99.0-db-close {db close} {}