diff options
author | 2019-10-25 16:31:23 +0200 | |
---|---|---|
committer | 2019-10-25 16:31:23 +0200 | |
commit | 66d93ecd9dcb306602c9299203f1de8908140a52 (patch) | |
tree | 1c6d940fa7144698d948d79f1ee25b5eb697f580 /tests/test_constants.py | |
parent | Apply suggestions from review, and add correct webhook ID. (diff) | |
parent | Merge pull request #466 from Akarys42/reminder-up (diff) |
Merge branch 'master' into reddit-makeover
Diffstat (limited to 'tests/test_constants.py')
-rw-r--r-- | tests/test_constants.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/test_constants.py b/tests/test_constants.py deleted file mode 100644 index e4a29d994..000000000 --- a/tests/test_constants.py +++ /dev/null @@ -1,23 +0,0 @@ -import inspect - -import pytest - -from bot import constants - - - 'section', - ( - cls - for (name, cls) in inspect.getmembers(constants) - if hasattr(cls, 'section') and isinstance(cls, type) - ) -) -def test_section_configuration_matches_typespec(section): - for (name, annotation) in section.__annotations__.items(): - value = getattr(section, name) - - if getattr(annotation, '_name', None) in ('Dict', 'List'): - pytest.skip("Cannot validate containers yet") - - assert isinstance(value, annotation) |