(self)
| 64 | """Direct conversion of OMML XML fragments to LaTeX.""" |
| 65 | |
| 66 | def test_simple_run(self): |
| 67 | elem = _wrap_in_omath("<m:r><m:t>x</m:t></m:r>") |
| 68 | assert omml_to_latex(elem) == "x" |
| 69 | |
| 70 | def test_fraction(self): |
| 71 | elem = _wrap_in_omath( |
nothing calls this directly
no test coverage detected