示例#1
0
def test_2par_2spell():
    actual_spells = create_spells("python_test_data/par2.csv", "active",
                                  "caseID", "month", "31")
    assert actual_spells == expected_2par_2spell
示例#2
0
def test_2par_1spell():
    actual_spells = create_spells("test_data/par2.csv", "active", "caseID",
                                  "month", "62")
    assert actual_spells == expected_2par_1spell
示例#3
0
def test_1par_1spell():
    actual_spells = create_spells("python_test_data/par1.csv", "active",
                                  "caseID", "month", "62")
    assert actual_spells == expected_1par_1spell
示例#4
0
def test_1par_2spell():
    actual_spells = create_spells("test_data/par1.csv", "active", "caseID",
                                  "month", "31")
    assert actual_spells == expected_1par_2spell