(count)
| 1146 | |
| 1147 | def test_big_linenos(self): |
| 1148 | def func(count): |
| 1149 | namespace = {} |
| 1150 | func = "def foo():\n " + "".join(["\n "] * count + ["spam\n"]) |
| 1151 | exec(func, namespace) |
| 1152 | return namespace['foo'] |
| 1153 | |
| 1154 | # Test all small ranges |
| 1155 | for i in range(1, 300): |
no test coverage detected