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