(self)
| 90 | assert self.c.biz.baz == "boz" |
| 91 | |
| 92 | def get(self): |
| 93 | assert self.c.get("foo") == "bar" |
| 94 | assert self.c.get("nope", "wut") == "wut" |
| 95 | assert self.c.biz.get("nope", "hrm") == "hrm" |
| 96 | |
| 97 | def pop(self): |
| 98 | assert self.c.pop("foo") == "bar" |
no outgoing calls
no test coverage detected