()
| 179 | nt.assert_equal(text.long_substr(data), '') |
| 180 | |
| 181 | def test_strip_email(): |
| 182 | src = """\ |
| 183 | >> >>> def f(x): |
| 184 | >> ... return x+1 |
| 185 | >> ... |
| 186 | >> >>> zz = f(2.5)""" |
| 187 | cln = """\ |
| 188 | >>> def f(x): |
| 189 | ... return x+1 |
| 190 | ... |
| 191 | >>> zz = f(2.5)""" |
| 192 | nt.assert_equal(text.strip_email_quotes(src), cln) |
| 193 | |
| 194 | |
| 195 | def test_strip_email2(): |
nothing calls this directly
no outgoing calls
no test coverage detected