Test the internal database used for variable persistence.
()
| 239 | |
| 240 | |
| 241 | def test_db(): |
| 242 | """Test the internal database used for variable persistence.""" |
| 243 | ip.db['__unittest_'] = 12 |
| 244 | nt.assert_equal(ip.db['__unittest_'], 12) |
| 245 | del ip.db['__unittest_'] |
| 246 | assert '__unittest_' not in ip.db |
nothing calls this directly
no outgoing calls
no test coverage detected