(self)
| 154 | pass |
| 155 | |
| 156 | def test_session_add(self): |
| 157 | c = self.container.connection() |
| 158 | s = c.session() |
| 159 | s.handler = object() |
| 160 | s.handler.add(BarfOnInit()) |
| 161 | try: |
| 162 | self.container.run() |
| 163 | assert False, "expected to barf" |
| 164 | except Barf: |
| 165 | pass |
| 166 | |
| 167 | def test_link_set(self): |
| 168 | c = self.container.connection() |
nothing calls this directly
no test coverage detected