(count)
| 1171 | |
| 1172 | def test_big_linenos(self): |
| 1173 | def func(count): |
| 1174 | namespace = {} |
| 1175 | func = "def foo():\n " + "".join(["\n "] * count + ["spam\n"]) |
| 1176 | exec(func, namespace) |
| 1177 | return namespace['foo'] |
| 1178 | |
| 1179 | # Test all small ranges |
| 1180 | for i in range(1, 300): |
no test coverage detected