(self)
| 766 | self.assertCompiled(bar2fn) |
| 767 | |
| 768 | def test_d_compile_error(self): |
| 769 | script_helper.make_script(self.pkgdir, 'crunchyfrog', 'bad(syntax') |
| 770 | rc, out, err = self.assertRunNotOK('-q', '-d', 'dinsdale', self.pkgdir) |
| 771 | self.assertRegex(out, b'File "dinsdale') |
| 772 | |
| 773 | @support.force_not_colorized |
| 774 | def test_d_runtime_error(self): |
nothing calls this directly
no test coverage detected