(self)
| 95 | assert self.c.biz.get("nope", "hrm") == "hrm" |
| 96 | |
| 97 | def pop(self): |
| 98 | assert self.c.pop("foo") == "bar" |
| 99 | assert self.c.pop("foo", "notbar") == "notbar" |
| 100 | assert self.c.biz.pop("baz") == "boz" |
| 101 | |
| 102 | def popitem(self): |
| 103 | assert self.c.biz.popitem() == ("baz", "boz") |
no outgoing calls
no test coverage detected