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')
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")