()
| 70 | |
| 71 | |
| 72 | def test_complex_class(): |
| 73 | SimpleClass = load_obj("class_with_type_hints.pkl") |
| 74 | c = SimpleClass(1) |
| 75 | assert hasattr(c, "attribute") |
| 76 | assert c.attribute == 1 |
| 77 | |
| 78 | # test class tracking feature |
| 79 | assert SimpleClass is load_obj("class_with_type_hints.pkl") |
| 80 | |
| 81 | |
| 82 | def test_complex_function(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…