(self)
| 911 | assert not bx.keys() |
| 912 | |
| 913 | def test_bad_recursive(self): |
| 914 | b = Box() |
| 915 | bl = b.setdefault("l", []) |
| 916 | bl.append(["foo"]) |
| 917 | assert bl == [["foo"]], bl |
| 918 | |
| 919 | def test_dots(self): |
| 920 | b = Box(movie_data.copy(), box_dots=True) |
nothing calls this directly
no test coverage detected