(self)
| 2407 | subclass=IndentationError) |
| 2408 | |
| 2409 | def test_no_indent(self): |
| 2410 | self._check_error("if 1:\nfoo()", "expected an indented block", |
| 2411 | subclass=IndentationError) |
| 2412 | |
| 2413 | def test_bad_outdent(self): |
| 2414 | self._check_error("if 1:\n foo()\n bar()", |
nothing calls this directly
no test coverage detected