Ejemplo n.º 1
0
def test_is_generic_with_non_generic():
    assert not is_generic(int)
Ejemplo n.º 2
0
def test_is_generic_with_generic():
    assert is_generic(Optional[int])