diff --git a/tests/test_about.py b/tests/test_meta.py similarity index 85% rename from tests/test_about.py rename to tests/test_meta.py index 192a22f..6a09625 100644 --- a/tests/test_about.py +++ b/tests/test_meta.py @@ -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)