()
| 2432 | |
| 2433 | |
| 2434 | def test_notification_order(): |
| 2435 | d = {c: c for c in "abcdefghijkl"} |
| 2436 | obj = OrderTraits() |
| 2437 | assert obj.notified == {} |
| 2438 | obj = OrderTraits(**d) |
| 2439 | notifications = {c: d for c in "abcdefghijkl"} |
| 2440 | assert obj.notified == notifications |
| 2441 | |
| 2442 | |
| 2443 | ### |
nothing calls this directly
no test coverage detected
searching dependent graphs…