Test that variables defined in scripts get loaded correctly via %run. In [13]: run simplevars.py x is: 1 In [14]: x Out[14]: 1
()
| 21 | """ |
| 22 | |
| 23 | def doctest_runvars(): |
| 24 | """Test that variables defined in scripts get loaded correctly via %run. |
| 25 | |
| 26 | In [13]: run simplevars.py |
| 27 | x is: 1 |
| 28 | |
| 29 | In [14]: x |
| 30 | Out[14]: 1 |
| 31 | """ |
| 32 | |
| 33 | def doctest_ivars(): |
| 34 | """Test that variables defined interactively are picked up. |
nothing calls this directly
no outgoing calls
no test coverage detected