Tests for basic options parsing in magics.
()
| 484 | |
| 485 | |
| 486 | def test_parse_options(): |
| 487 | """Tests for basic options parsing in magics.""" |
| 488 | # These are only the most minimal of tests, more should be added later. At |
| 489 | # the very least we check that basic text/unicode calls work OK. |
| 490 | m = DummyMagics(_ip) |
| 491 | nt.assert_equal(m.parse_options('foo', '')[1], 'foo') |
| 492 | nt.assert_equal(m.parse_options(u'foo', '')[1], u'foo') |
| 493 | |
| 494 | |
| 495 | def test_dirops(): |
nothing calls this directly
no test coverage detected