(self)
| 204 | assert_(o == 'Hello') |
| 205 | |
| 206 | def test_basic(self): |
| 207 | with redirect_stdout(StringIO()): |
| 208 | with redirect_stderr(StringIO()): |
| 209 | with assert_warns(DeprecationWarning): |
| 210 | if os.name == "posix": |
| 211 | self.check_posix(use_tee=0) |
| 212 | self.check_posix(use_tee=1) |
| 213 | elif os.name == "nt": |
| 214 | self.check_nt(use_tee=0) |
| 215 | self.check_nt(use_tee=1) |
| 216 | self.check_execute_in(use_tee=0) |
| 217 | self.check_execute_in(use_tee=1) |
nothing calls this directly
no test coverage detected