mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Empty Datasette([]) list is no longer required
This commit is contained in:
parent
280ff372ab
commit
a5acfff4bd
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ If you use the template described in :ref:`writing_plugins_cookiecutter` your pl
|
|||
|
||||
@pytest.mark.asyncio
|
||||
async def test_plugin_is_installed():
|
||||
datasette = Datasette([], memory=True)
|
||||
datasette = Datasette(memory=True)
|
||||
response = await datasette.client.get("/-/plugins.json")
|
||||
assert response.status_code == 200
|
||||
installed_plugins = {p["name"] for p in response.json()}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue