[lang-ref] ( is_alpha ) ( python )

@pytest.mark.parametrize(
    'text, expected',
    [
        ('a', True),
        ('1', False),
        (' ', False),
    ],
)
def test_is_alpha(text, expected):
    assert text.isalpha() is expected