(self)
| 134 | pass |
| 135 | |
| 136 | def test_connection_add(self): |
| 137 | c = self.container.connection() |
| 138 | c.handler = object() |
| 139 | c.handler.add(BarfOnInit()) |
| 140 | try: |
| 141 | self.container.run() |
| 142 | assert False, "expected to barf" |
| 143 | except Barf: |
| 144 | pass |
| 145 | |
| 146 | def test_session_set(self): |
| 147 | c = self.container.connection() |
nothing calls this directly
no test coverage detected