()
| 4 | |
| 5 | |
| 6 | def test_bunch(): |
| 7 | b = Bunch(x=5, y=10) |
| 8 | assert "y" in b |
| 9 | assert "x" in b |
| 10 | assert b.x == 5 |
| 11 | b["a"] = "hi" |
| 12 | assert b.a == "hi" |
| 13 | |
| 14 | |
| 15 | def test_bunch_dir(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…