Skip to content

Commit

Permalink
Parametrize test of .adb.convert()
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Dec 10, 2023
1 parent 4d4c47a commit 607e033
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion transport_data/tests/test_adb.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@

@pytest.mark.parametrize(
"part",
(pytest.param("TAS", marks=pytest.mark.xfail(raises=KeyError)),),
(
pytest.param("ACC", marks=pytest.mark.xfail(reason="Incomplete")),
"APH",
"CLC",
"INF",
pytest.param("MIS", marks=pytest.mark.xfail(reason="Incomplete")),
pytest.param("POL", marks=pytest.mark.xfail(reason="Incomplete")),
pytest.param("RSA", marks=pytest.mark.xfail(reason="Incomplete")),
pytest.param("SEC", marks=pytest.mark.xfail(reason="Incomplete")),
"TAS",
),
)
def test_convert(part):
convert(part)

0 comments on commit 607e033

Please sign in to comment.