()
| 21 | assert nb.fn == fn |
| 22 | |
| 23 | def test_nb_parser(): |
| 24 | here = dirname(__file__) |
| 25 | fn = join(here, 'cheese_shop.ipynb') |
| 26 | nb = NotebookHandler(fn) |
| 27 | nb.parse() |
| 28 | assert [hasattr(nb, attr) for attr in ['modules','nodes']] |
| 29 | |
| 30 | def test_tranquilized_script(): |
| 31 | here = dirname(__file__) |
nothing calls this directly
no test coverage detected