96912d47a4
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
8 lines
237 B
Python
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)
|