Skip to content

Commit

Permalink
Test for ?_extra=count, refs #262
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jan 8, 2024
1 parent 0b2c6a7 commit 2ff4d4a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/test_table_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1378,6 +1378,16 @@ async def test_col_nocol_errors(ds_client, path, expected_error):
"truncated": False,
},
),
(
"count",
{
"ok": True,
"next": None,
"rows": [{"id": "1", "content": "hey", "content2": "world"}],
"truncated": False,
"count": 1,
},
),
),
)
async def test_table_extras(ds_client, extra, expected_json):
Expand Down

0 comments on commit 2ff4d4a

Please sign in to comment.