def test_anti_vowel_vowel(): assert anti_vowel.anti_vowel("aeiouAEIOU") == ""
def test_anti_vowel_cons(): assert anti_vowel.anti_vowel( "BCDFGHJKLMNPQRSTVXZ") == "BCDFGHJKLMNPQRSTVXZ"
def test_anti_vowel(): assert anti_vowel.anti_vowel("hello") == "hll"
def test_anti_vowel_word(): assert anti_vowel.anti_vowel("random") == "rndm"
def test_multiply_hi(): assert anti_vowel.anti_vowel("hello") == "hll"
def test_multiply_goodbye(): assert anti_vowel.anti_vowel("goodbye") == "gdby"
def test_anti_vowel_random(): assert anti_vowel.anti_vowel("aaab") == 'b'
def test_anti_vowel_vowels(): assert anti_vowel.anti_vowel( "ooooooooooooooooooooooooooooooooooooooooooooooooo") == ''
def test_anti_vowel_one(): assert anti_vowel.anti_vowel("john") == "jhn"
def test_anti_vowel_novowels(): assert anti_vowel.anti_vowel( "kkkkkkkkkkkkkkkkkkkkkkkkkkkkkk") == 'kkkkkkkkkkkkkkkkkkkkkkkkkkkkkk'
def test_anti_vowel(): assert anti_vowel.anti_vowel("daviddavid") == "dvddvd"
def test_anti_vowel_three(): assert anti_vowel.anti_vowel("Leeroy") == "Lry"
def test_anti_vowel_two(): assert anti_vowel.anti_vowel("Thomas") == "Thms"
def test_anti_vowel(): assert anti_vowel.anti_vowel("und tanz den kommunismus")
def test_count_string(): assert anti_vowel.anti_vowel(["hello"])=="hello"