()
| 28 | assert [hasattr(nb, attr) for attr in ['modules','nodes']] |
| 29 | |
| 30 | def test_tranquilized_script(): |
| 31 | here = dirname(__file__) |
| 32 | fn = join(here, 'cheese_shop.py') |
| 33 | script = ScriptHandler(fn) |
| 34 | script.parse() |
| 35 | funcs = script.tranquilized_functions |
| 36 | assert len(funcs) == 1 |
| 37 | |
| 38 | def test_tranquilized_nb(): |
| 39 | here = dirname(__file__) |
nothing calls this directly
no test coverage detected