forward latex should really return nothing in either field if nothing is found.
(self)
| 225 | nt.assert_in("\\aleph", matches) |
| 226 | |
| 227 | def test_latex_no_results(self): |
| 228 | """ |
| 229 | forward latex should really return nothing in either field if nothing is found. |
| 230 | """ |
| 231 | ip = get_ipython() |
| 232 | text, matches = ip.Completer.latex_matches("\\really_i_should_match_nothing") |
| 233 | nt.assert_equal(text, "") |
| 234 | nt.assert_equal(matches, []) |
| 235 | |
| 236 | def test_back_latex_completion(self): |
| 237 | ip = get_ipython() |
nothing calls this directly
no test coverage detected