/-/versions now includes SQLite fts_versions, closes #252

This commit is contained in:
Simon Willison 2018-05-11 10:19:25 -03:00
commit 04d21ccd08
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52
2 changed files with 14 additions and 0 deletions

View file

@ -864,6 +864,7 @@ def test_versions_json(app_client):
assert 'version' in response.json['datasette']
assert 'sqlite' in response.json
assert 'version' in response.json['sqlite']
assert 'fts_versions' in response.json['sqlite']
def test_page_size_matching_max_returned_rows(app_client_returend_rows_matches_page_size):