()
| 36 | assert len(funcs) == 1 |
| 37 | |
| 38 | def test_tranquilized_nb(): |
| 39 | here = dirname(__file__) |
| 40 | fn = join(here, 'cheese_shop.ipynb') |
| 41 | nb = NotebookHandler(fn) |
| 42 | nb.parse() |
| 43 | funcs = nb.tranquilized_functions |
| 44 | assert len(funcs) == 1 |
| 45 | |
| 46 | def test_published_script(): |
| 47 | here = dirname(__file__) |
nothing calls this directly
no test coverage detected