(self)
| 24 | class KeysTest(unittest.TestCase): |
| 25 | |
| 26 | def setUp(self): |
| 27 | self.input = PipeInput() |
| 28 | output = DummyOutput() |
| 29 | self.aws_shell = AWSShell(None, mock.Mock(), mock.Mock(), |
| 30 | input=self.input, output=output) |
| 31 | self.processor = self.aws_shell.cli.input_processor |
| 32 | |
| 33 | def tearDown(self): |
| 34 | self.input.close() |