コード例 #1
0
ファイル: test_regex.py プロジェクト: dcribb19/bitesofpy
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")