(self)
| 65 | self.assertIn('Reservations', p.json) |
| 66 | |
| 67 | def test_help_output(self): |
| 68 | p = aws('help') |
| 69 | self.assertEqual(p.rc, 0) |
| 70 | self.assertIn('AWS', p.stdout) |
| 71 | self.assertRegex(p.stdout, r'The\s+AWS\s+Command\s+Line\s+Interface') |
| 72 | |
| 73 | def test_service_help_output(self): |
| 74 | p = aws('ec2 help') |