Test that multiple line strings are properly handled. Separate test function for convenience
()
| 287 | nt.assert_equal(cc("def f():\n x=0\n \\\n "), ('incomplete', 2)) |
| 288 | |
| 289 | def test_check_complete_II(): |
| 290 | """ |
| 291 | Test that multiple line strings are properly handled. |
| 292 | |
| 293 | Separate test function for convenience |
| 294 | |
| 295 | """ |
| 296 | cc = ipt2.TransformerManager().check_complete |
| 297 | nt.assert_equal(cc('''def foo():\n """'''), ('incomplete', 4)) |
| 298 | |
| 299 | |
| 300 | def test_null_cleanup_transformer(): |
nothing calls this directly
no outgoing calls
no test coverage detected