diff --git a/tests/data/migrations/chowdown/chowdown-gh-pages.zip b/tests/data/migrations/chowdown/chowdown-gh-pages.zip new file mode 100644 index 000000000..bd90e08d4 Binary files /dev/null and b/tests/data/migrations/chowdown/chowdown-gh-pages.zip differ diff --git a/tests/data/migrations/nextcloud/new_nextcloud.zip b/tests/data/migrations/nextcloud/new_nextcloud.zip new file mode 100644 index 000000000..a420370ff Binary files /dev/null and b/tests/data/migrations/nextcloud/new_nextcloud.zip differ diff --git a/tests/integration_tests/test_recipe_routes.py b/tests/integration_tests/test_recipe_routes.py index b94d6d5f3..02803c05f 100644 --- a/tests/integration_tests/test_recipe_routes.py +++ b/tests/integration_tests/test_recipe_routes.py @@ -34,11 +34,6 @@ def test_create_no_image(api_client: TestClient, api_routes: AppRoutes, token, r assert json.loads(response.text) == "banana-bread-no-image" -def test_read_all_post(api_client: TestClient, api_routes: AppRoutes): - response = api_client.post(api_routes.recipes, json={"properties": ["slug", "description", "rating"]}) - assert response.status_code == 200 - - @pytest.mark.parametrize("recipe_data", recipe_test_data) def test_read_update(api_client: TestClient, api_routes: AppRoutes, recipe_data, token): recipe_url = api_routes.recipes_recipe_slug(recipe_data.expected_slug)