Tests for basic options parsing in magics.
()
| 590 | |
| 591 | |
| 592 | def test_parse_options(): |
| 593 | """Tests for basic options parsing in magics.""" |
| 594 | # These are only the most minimal of tests, more should be added later. At |
| 595 | # the very least we check that basic text/unicode calls work OK. |
| 596 | m = DummyMagics(_ip) |
| 597 | assert m.parse_options("foo", "")[1] == "foo" |
| 598 | assert m.parse_options("foo", "")[1] == "foo" |
| 599 | |
| 600 | |
| 601 | def test_parse_options_preserve_non_option_string(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…