()
| 2 | from os.path import dirname, join |
| 3 | |
| 4 | def test_script_handler(): |
| 5 | here = dirname(__file__) |
| 6 | fn = join(here, 'cheese_shop.py') |
| 7 | script = ScriptHandler(fn) |
| 8 | assert script.fn == fn |
| 9 | |
| 10 | def test_script_parser(): |
| 11 | here = dirname(__file__) |
nothing calls this directly
no test coverage detected