(self)
| 414 | self.assert_lineage_names(['configure']) |
| 415 | |
| 416 | def test_operation_level_commands(self): |
| 417 | # Check a normal unchanged service and operation command |
| 418 | self.assert_lineage_names(['dynamodb', 'create-table']) |
| 419 | |
| 420 | # Check an operation commands with a service that had its name changed. |
| 421 | self.assert_lineage_names(['s3api', 'list-objects']) |
| 422 | |
| 423 | # Check a custom operation level command with no |
| 424 | # custom service command. |
| 425 | self.assert_lineage_names(['emr', 'create-cluster']) |
| 426 | |
| 427 | # Check a couple of operation level commands that |
| 428 | # are based off a custom service command |
| 429 | self.assert_lineage_names(['configure', 'set']) |
| 430 | self.assert_lineage_names(['s3', 'cp']) |
| 431 | |
| 432 | def test_wait_commands(self): |
| 433 | self.assert_lineage_names(['ec2', 'wait']) |
nothing calls this directly
no test coverage detected