(self)
| 403 | self.assertEqual(command.lineage_names, actual_lineage_names) |
| 404 | |
| 405 | def test_service_level_commands(self): |
| 406 | # Check a normal unchanged service command |
| 407 | self.assert_lineage_names(['ec2']) |
| 408 | |
| 409 | # Check a service that had its name changed. |
| 410 | self.assert_lineage_names(['s3api']) |
| 411 | |
| 412 | # Check a couple custom service level commands. |
| 413 | self.assert_lineage_names(['s3']) |
| 414 | self.assert_lineage_names(['configure']) |
| 415 | |
| 416 | def test_operation_level_commands(self): |
| 417 | # Check a normal unchanged service and operation command |
nothing calls this directly
no test coverage detected