(self)
| 29 | ###################################################### |
| 30 | |
| 31 | def test_name_param(self): |
| 32 | prog_text = """\ |
| 33 | def fn(name_param): |
| 34 | global name_param |
| 35 | """ |
| 36 | check_syntax_error(self, prog_text, lineno=2, offset=5) |
| 37 | |
| 38 | def test_name_after_assign(self): |
| 39 | prog_text = """\ |
nothing calls this directly
no test coverage detected