()
| 83 | """) |
| 84 | |
| 85 | def test_leading_indent(): |
| 86 | for sample, expected in [INDENT_SPACES, INDENT_TABS]: |
| 87 | nt.assert_equal(ipt2.leading_indent(sample.splitlines(keepends=True)), |
| 88 | expected.splitlines(keepends=True)) |
| 89 | |
| 90 | LEADING_EMPTY_LINES = ("""\ |
| 91 | \t |
nothing calls this directly
no outgoing calls
no test coverage detected