()
| 41 | |
| 42 | |
| 43 | def test_simple_class(): |
| 44 | SimpleClass = load_obj("simple_class.pkl") |
| 45 | c = SimpleClass(1) |
| 46 | assert hasattr(c, "attribute") |
| 47 | assert c.attribute == 1 |
| 48 | |
| 49 | # test class tracking feature |
| 50 | assert SimpleClass is load_obj("simple_class.pkl") |
| 51 | |
| 52 | |
| 53 | def test_dynamic_module(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…