This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/util/config/test/test_schema.py

8 lines
258 B
Python
Raw Normal View History

from config import DefaultConfig
from util.config.schema import CONFIG_SCHEMA
def test_ensure_schema_defines_all_fields():
for key in vars(DefaultConfig):
assert key in CONFIG_SCHEMA['properties'], "Property `%s` is missing from config schema" % key