コード例 #1
0
def test_six():
    assert python2.six("ilovepy") == True
    assert python2.six("welovepy") == True
    assert python2.six("welovepyforreal") == False
    assert python2.six("pyiscool") == False
    assert python2.six("hurrayforpY") == True


#
# def test_seven():
#     assert python2.seven(2,4,6) == True
#     assert python2.seven(4,6,2) == True
#     assert python2.seven(4,6,3) == False
#     assert python2.seven(4,60,9) == False
#     assert python2.seven(2,2,2) == True
#
# def test_eight():
#     assert python2.eight("Hello", 3) == "Ho"
#     assert python2.eight("Chocolate", 3) == "Choate"
#     assert python2.eight("Chocolate", 1) == "Choclate"
#     assert python2.eight("Water", 1) == "Waer"
#     assert python2.eight("Water", 5) == ""
#
# def test_nine():
#     assert python2.nine("god", "dog") == True
#     assert python2.nine("tree", "tiredest") == True
#     assert python2.nine("cat", "dog") == False
#     assert python2.nine("tripping", "gin") == True
#     assert python2.nine("computer", "python") == False
#
# def test_ten():
#     assert python2.ten(3,2) == [[0,0,0],[0,1,2]]
#     assert python2.ten(2,1) == [[0,0]]
#     assert python2.ten(3,4) == [[0,0,0],[0,1,2],[0,2,4],[0,3,6]]
#     assert python2.ten(2,5) == [[0,0],[0,1],[0,2],[0,3],[0,4]]
#     assert python2.ten(4,5) == [[0, 0, 0, 0], [0, 1, 2, 3], [0, 2, 4, 6], [0, 3, 6, 9], [0, 4, 8, 12]]
コード例 #2
0
def test_six():
    assert python2.six("ilovepy") == True
    assert python2.six("welovepy") == True
    assert python2.six("welovepyforreal") == False
    assert python2.six("pyiscool") == False
    assert python2.six("hurrayforpY") == True
コード例 #3
0
ファイル: assessment_test.py プロジェクト: THC-QA/Assessment1
def test_six():
    assert python2.six("ceiling") == True
    assert python2.six("believe") == True
    assert python2.six("glacier") == False
    assert python2.six("height") == False
    assert python2.six("receive") == True