()
| 13 | |
| 14 | |
| 15 | def test_bunch_dir(): |
| 16 | b = Bunch(x=5, y=10) |
| 17 | assert "keys" in dir(b) |
| 18 | assert "x" in dir(b) |
| 19 | assert "z" not in dir(b) |
| 20 | b.z = 15 |
| 21 | assert "z" in dir(b) |
nothing calls this directly
no test coverage detected
searching dependent graphs…