-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_collect.py
43 lines (39 loc) · 1.2 KB
/
test_collect.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from __future__ import annotations
from contextlib import ExitStack as does_not_raise # noqa: N813
import pytest
from pytask_latex.collect import latex
@pytest.mark.unit()
@pytest.mark.parametrize(
("kwargs", "expectation", "expected"),
[
({}, pytest.raises(TypeError, match=r"latex\(\) missing 2 required"), None),
(
{"document": "document.pdf"},
pytest.raises(TypeError, match=r"latex\(\) missing 1 required"),
None,
),
(
{"script": "script.tex"},
pytest.raises(TypeError, match=r"latex\(\) missing 1 required"),
None,
),
(
{"script": "script.tex", "document": "document.pdf"},
does_not_raise(),
("script.tex", "document.pdf", None),
),
(
{
"script": "script.tex",
"document": "document.pdf",
"compilation_steps": "latexmk",
},
does_not_raise(),
("script.tex", "document.pdf", "latexmk"),
),
],
)
def test_latex(kwargs, expectation, expected):
with expectation:
result = latex(**kwargs)
assert result == expected