Skip to content

Commit 0457161

Browse files
committed
Test of Special
1 parent 3fe4152 commit 0457161

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,11 @@ def test_input_annotation_annotation_grouping(type_to_group: type):
6262
)
6363
def test_annotation_template(annotation_template: AnnotationTemplate, input_resource: Any, result: Any):
6464
assert annotation_template[input_resource] == result
65+
66+
67+
@mark.parametrize(
68+
"input_resource, result",
69+
[(int, Any), ((tuple | list, Iterable), Iterable), ((str, Sized), Sized)]
70+
)
71+
def test_special(input_resource: Any, result: Any):
72+
assert Special[input_resource] == result

0 commit comments

Comments
 (0)