()
| 28 | #----------------------------------------------------------------------------- |
| 29 | |
| 30 | def test_code_name(): |
| 31 | code = 'x=1' |
| 32 | name = compilerop.code_name(code) |
| 33 | nt.assert_true(name.startswith('<ipython-input-0')) |
| 34 | |
| 35 | |
| 36 | def test_code_name2(): |
nothing calls this directly
no outgoing calls
no test coverage detected