(self)
| 1109 | self.assertEqual(self.cmd.lineage_names, ['list-objects']) |
| 1110 | |
| 1111 | def test_deprecated_operation(self): |
| 1112 | self.mock_operation.deprecated = True |
| 1113 | cmd = ServiceOperation( |
| 1114 | self.name, None, None, self.mock_operation, None |
| 1115 | ) |
| 1116 | self.assertTrue(getattr(cmd, '_UNDOCUMENTED')) |
| 1117 | |
| 1118 | def test_idempotency_token_is_not_required(self): |
| 1119 | session = FakeSession() |
nothing calls this directly
no test coverage detected