blob: 6702b48633d5d9eb2c46e09088d97784ef92a2cd (
plain)
1
2
3
4
5
6
7
8
9
|
"""Tests for types module."""
import ansible_compat.types
def test_types() -> None:
"""Tests that JSON types are exported."""
assert ansible_compat.types.JSON
assert ansible_compat.types.JSON_ro
|