diff options
| author | Anonymous Authors <anonymous@invalid.example> | 2026-07-24 13:24:36 -0500 |
|---|---|---|
| committer | Anonymous Authors <anonymous@invalid.example> | 2026-07-24 13:24:36 -0500 |
| commit | db293f3606a97b3e417de27124858e134005acbd (patch) | |
| tree | 8efeedcd2033b82d1c90eb0cb84e134421ff1a8f /tests/test_offline.py | |
Add minimal GAP reproduction package
Diffstat (limited to 'tests/test_offline.py')
| -rw-r--r-- | tests/test_offline.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_offline.py b/tests/test_offline.py new file mode 100644 index 0000000..04b7f46 --- /dev/null +++ b/tests/test_offline.py @@ -0,0 +1,6 @@ +from gap_pipeline.offline import normalize_latex_symbol + + +def test_latex_symbol_aliases_normalize_together() -> None: + assert normalize_latex_symbol(r"x_{n}") == normalize_latex_symbol("x_n") + assert normalize_latex_symbol(r"\\phi") == normalize_latex_symbol(r"\phi") |
