(self)
| 271 | self.fail('Should not raise IOError') |
| 272 | |
| 273 | def test_get_output_stream(self): |
| 274 | self.set_session_pager('mypager --option') |
| 275 | with self.stream_factory.get_output_stream() as stream: |
| 276 | stream.write() |
| 277 | self.assert_popen_call(expected_pager_cmd='mypager --option') |
| 278 | |
| 279 | @mock.patch('awscli.utils.get_stdout_text_writer') |
| 280 | def test_use_stdout_if_not_tty(self, mock_stdout_writer): |
nothing calls this directly
no test coverage detected