コード例 #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
ファイル: test_anti_vowel.py プロジェクト: htr-volker/testing
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"