Failing test showing that DML in sqlite-utils query doesn't work

This commit is contained in:
Thomas Sibley 2020-07-07 12:32:48 -07:00
commit 52418cea80

View file

@ -1126,3 +1126,6 @@ def test_query_update(db_path, args, expected):
cli.cli, [db_path, "update dogs set age = 5 where name = 'Cleo'"] + args
)
assert expected == result.output.strip()
assert db.execute_returning_dicts("select * from dogs") == [
{"id": 1, "age": 5, "name": "Cleo"},
]