Ejemplo n.º 1
0
def test_anti_vowel_vowel():
    assert anti_vowel.anti_vowel("aeiouAEIOU") == ""
Ejemplo n.º 2
0
def test_anti_vowel_cons():
    assert anti_vowel.anti_vowel(
        "BCDFGHJKLMNPQRSTVXZ") == "BCDFGHJKLMNPQRSTVXZ"
Ejemplo n.º 3
0
def test_anti_vowel():
    assert anti_vowel.anti_vowel("hello") == "hll"
Ejemplo n.º 4
0
def test_anti_vowel_word():
    assert anti_vowel.anti_vowel("random") == "rndm"
Ejemplo n.º 5
0
def test_multiply_hi():
    assert anti_vowel.anti_vowel("hello") == "hll"
Ejemplo n.º 6
0
def test_multiply_goodbye():
    assert anti_vowel.anti_vowel("goodbye") == "gdby"
Ejemplo n.º 7
0
def test_anti_vowel_random():
    assert anti_vowel.anti_vowel("aaab") == 'b'
Ejemplo n.º 8
0
def test_anti_vowel_vowels():
    assert anti_vowel.anti_vowel(
        "ooooooooooooooooooooooooooooooooooooooooooooooooo") == ''
Ejemplo n.º 9
0
def test_anti_vowel_one():
    assert anti_vowel.anti_vowel("john") == "jhn"
Ejemplo n.º 10
0
def test_anti_vowel_novowels():
    assert anti_vowel.anti_vowel(
        "kkkkkkkkkkkkkkkkkkkkkkkkkkkkkk") == 'kkkkkkkkkkkkkkkkkkkkkkkkkkkkkk'
Ejemplo n.º 11
0
def test_anti_vowel():
    assert anti_vowel.anti_vowel("daviddavid") == "dvddvd"
Ejemplo n.º 12
0
def test_anti_vowel_three():
    assert anti_vowel.anti_vowel("Leeroy") == "Lry"
Ejemplo n.º 13
0
def test_anti_vowel_two():
    assert anti_vowel.anti_vowel("Thomas") == "Thms"
Ejemplo n.º 14
0
def test_anti_vowel():
    assert anti_vowel.anti_vowel("und tanz den kommunismus")
Ejemplo n.º 15
0
def test_count_string():
    assert anti_vowel.anti_vowel(["hello"])=="hello"