示例#1
0
def test_has_vowels():
    assert True == has_vowels("ababa", 3)
    assert True == has_vowels("baeioub", 5)
示例#2
0
def test_has_insufficient_vowels():
    assert False == has_vowels("abcd", 3)
示例#3
0
def test_has_no_vowels():
    assert False == has_vowels("bcdfghjklm")