Files
ComfyUI-Dataset-Gates/tests/test_textgate.py
T
2026-06-21 18:44:07 +02:00

8 lines
237 B
Python

# tests/test_textgate.py
from gates import textgate
def test_anytype_is_compatible_with_everything():
assert (textgate.ANY != "IMAGE") is False
assert (textgate.ANY != "LATENT") is False
assert isinstance(textgate.ANY, str)