()
| 8 | assert script.fn == fn |
| 9 | |
| 10 | def test_script_parser(): |
| 11 | here = dirname(__file__) |
| 12 | fn = join(here, 'cheese_shop.py') |
| 13 | script = ScriptHandler(fn) |
| 14 | script.parse() |
| 15 | assert [hasattr(script, attr) for attr in ['modules','nodes']] |
| 16 | |
| 17 | def test_nb_handler(): |
| 18 | here = dirname(__file__) |
nothing calls this directly
no test coverage detected