python-boto3/tests/unit/ec2/test_deletetags.py

39 lines
1.3 KiB
Python
Raw Normal View History

2016-05-22 04:03:29 +02:00
# Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the 'License'). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
2021-09-22 18:34:33 +02:00
# https://aws.amazon.com/apache2.0/
2016-05-22 04:03:29 +02:00
#
# or in the 'license' file accompanying this file. This file is
# distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
from boto3.ec2.deletetags import delete_tags
2022-05-26 01:13:54 +02:00
from tests import mock, unittest
2016-05-22 04:03:29 +02:00
class TestDeleteTags(unittest.TestCase):
def setUp(self):
self.client = mock.Mock()
self.resource = mock.Mock()
self.resource.meta.client = self.client
self.instance_id = 'instance_id'
self.resource.id = self.instance_id
def test_delete_tags(self):
tags = {
'Tags': [
{'Key': 'key1', 'Value': 'value1'},
{'Key': 'key2', 'Value': 'value2'},
2022-05-26 01:13:54 +02:00
{'Key': 'key3', 'Value': 'value3'},
2016-05-22 04:03:29 +02:00
]
}
delete_tags(self.resource, **tags)
kwargs = tags
kwargs['Resources'] = [self.instance_id]
self.client.delete_tags.assert_called_with(**kwargs)