コード例 #1
0
ファイル: test_cars.py プロジェクト: szymonbalasz/Pybites
def test_get_first_model_each_manufacturer():
    actual = get_first_model_each_manufacturer()
    expected = ['Falcon', 'Commodore', 'Maxima', 'Civic', 'Grand Cherokee']
    assert actual == expected
コード例 #2
0
ファイル: test_cars.py プロジェクト: pogross/bitesofpy
def test_get_first_model_each_manufacturer():
    actual = get_first_model_each_manufacturer()
    expected = ["Falcon", "Commodore", "Maxima", "Civic", "Grand Cherokee"]
    assert actual == expected