_eq should not consider differences in .blocking
()
| 129 | |
| 130 | |
| 131 | def test_eq_blocking(): |
| 132 | """_eq should not consider differences in .blocking""" |
| 133 | a = TCommand() |
| 134 | a.blocking = True |
| 135 | b = TCommand() |
| 136 | b.blocking = False |
| 137 | assert tutils._eq(a, b) |
| 138 | |
| 139 | |
| 140 | def test_eq_placeholder(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…