mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-07 17:14:09 +02:00
Merge 193a708664 into 85b1be10c8
This commit is contained in:
commit
c84c81245e
1 changed files with 3 additions and 1 deletions
|
|
@ -109,7 +109,9 @@ def test_query_load_extension(use_spatialite_shortcut):
|
|||
],
|
||||
)
|
||||
assert result.exit_code == 0, result.stdout
|
||||
assert ["spatialite_version()"] == list(json.loads(result.output)[0].keys())
|
||||
rows = json.loads(result.output)
|
||||
assert len(rows) == 1
|
||||
assert ["spatialite_version()"] == list(rows[0].keys())
|
||||
|
||||
|
||||
def test_cli_create_spatialite(tmpdir):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue