-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4154129
commit 7760741
Showing
5 changed files
with
36 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
# Bernhard Mallinger <[email protected]> | ||
# | ||
# Copyright (c) 2019 Just van den Broecke | ||
# Copyright (c) 2024 Tom Kralidis | ||
# Copyright (c) 2025 Tom Kralidis | ||
# Copyright (c) 2022 John A Stevenson and Colin Blackburn | ||
# Copyright (c) 2023 Francesco Bartoli | ||
# Copyright (c) 2024 Bernhard Mallinger | ||
|
@@ -580,7 +580,7 @@ def test_get_collection_items_postgresql_cql_bad_cql(pg_api_, bad_cql): | |
assert error_response['description'] == 'Bad CQL text' | ||
|
||
|
||
def test_post_collection_items_postgresql_cql(pg_api_): | ||
def test_get_collection_items_postgresql_cql_json(pg_api_): | ||
""" | ||
Test for PostgreSQL CQL - requires local PostgreSQL with appropriate | ||
data. See pygeoapi/provider/postgresql.py for details. | ||
|
@@ -625,7 +625,7 @@ def test_post_collection_items_postgresql_cql(pg_api_): | |
assert ids == expected_ids | ||
|
||
|
||
def test_post_collection_items_postgresql_cql_invalid_filter_language(pg_api_): | ||
def test_get_collection_items_postgresql_cql_json_invalid_filter_language(pg_api_): # noqa | ||
""" | ||
Test for PostgreSQL CQL - requires local PostgreSQL with appropriate | ||
data. See pygeoapi/provider/postgresql.py for details. | ||
|
@@ -657,7 +657,7 @@ def test_post_collection_items_postgresql_cql_invalid_filter_language(pg_api_): | |
# At some point this may return UnexpectedEOF | ||
'{"in": {"value": {"property": "id"}, "list": [1, 2}}' | ||
]) | ||
def test_post_collection_items_postgresql_cql_bad_cql(pg_api_, bad_cql): | ||
def test_get_collection_items_postgresql_cql_json_bad_cql(pg_api_, bad_cql): | ||
""" | ||
Test for PostgreSQL CQL - requires local PostgreSQL with appropriate | ||
data. See pygeoapi/provider/postgresql.py for details. | ||
|