stub out schema completeness tests

This commit is contained in:
smilerz
2024-04-05 08:15:01 -05:00
parent e99ff005d6
commit f560365ded

View File

@@ -15,5 +15,29 @@ def test_pagination_exists(route):
or 'get' in route[1].http_method_names and hasattr(route[1], 'pagination_class') and route[1].pagination_class is not None), f"API {route[0]} is not paginated."
def test_schema_completeness():
def test_list_schema_completeness():
pass
def test_get_schema_completeness():
pass
def test_create_schema_completeness():
pass
def test_update_schema_completeness():
pass
def test_partialupdate_schema_completeness():
pass
def test_destroy_schema_completeness():
pass
def test_trace_schema_completeness():
pass