示例#1
0
def test_has_three_consecutive_vowels():
    assert has_three_consecutive_vowels('beautiful')
    assert has_three_consecutive_vowels('queueing')
    assert not has_three_consecutive_vowels('mountain')
    assert not has_three_consecutive_vowels('house')
示例#2
0
def test_has_three_consecutive_vowels():
    assert has_three_consecutive_vowels("beautiful")
    assert has_three_consecutive_vowels("queueing")
    assert not has_three_consecutive_vowels("mountain")
    assert not has_three_consecutive_vowels("house")