mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-26 10:54:32 +02:00
Test that exposes sqlite_version
This commit is contained in:
parent
8e2a313c1e
commit
bb623815a7
1 changed files with 4 additions and 0 deletions
|
|
@ -4,6 +4,10 @@ search_records = [
|
|||
]
|
||||
|
||||
|
||||
def test_sqlite_version(fresh_db):
|
||||
assert False, str(fresh_db.conn.execute("select sqlite_version()").fetchall())
|
||||
|
||||
|
||||
def test_enable_fts(fresh_db):
|
||||
table = fresh_db["searchable"]
|
||||
table.insert_all(search_records)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue