(self)
| 21 | |
| 22 | class TestCLITimestampParser(BaseCLIWireResponseTest): |
| 23 | def setUp(self): |
| 24 | super(TestCLITimestampParser, self).setUp() |
| 25 | self.files = FileCreator() |
| 26 | self.wire_response = json.dumps( |
| 27 | { |
| 28 | 'builds': [ |
| 29 | { |
| 30 | 'startTime': 0, |
| 31 | } |
| 32 | ] |
| 33 | } |
| 34 | ).encode('utf-8') |
| 35 | self.command = ['codebuild', 'batch-get-builds', '--ids', 'foo'] |
| 36 | self.patch_send(content=self.wire_response) |
| 37 | |
| 38 | def tearDown(self): |
| 39 | super(TestCLITimestampParser, self).tearDown() |
nothing calls this directly
no test coverage detected