(self)
| 144 | pass |
| 145 | |
| 146 | def test_session_set(self): |
| 147 | c = self.container.connection() |
| 148 | s = c.session() |
| 149 | s.handler = BarfOnInit() |
| 150 | try: |
| 151 | self.container.run() |
| 152 | assert False, "expected to barf" |
| 153 | except Barf: |
| 154 | pass |
| 155 | |
| 156 | def test_session_add(self): |
| 157 | c = self.container.connection() |
nothing calls this directly
no test coverage detected