Add check for __all__ items

This commit is contained in:
Ethan Paul 2023-05-04 14:41:34 -04:00
parent 5e032d3827
commit 7c6e0b799d
Signed by: enpaul
GPG Key ID: DAF443CA3A2FA6FA

View File

@ -31,3 +31,10 @@ def test_about():
)
is True
)
def test_all():
"""Test that the string entries in ``__all__`` are correct"""
for item in peewee_plus.__all__:
assert hasattr(peewee_plus, item)