blob: 5c1edcb314fee2fcfa3149c6ad524276e3c88ebb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) #
# and others #
# #
# All rights reserved. This program and the accompanying materials #
# are made available under the terms of the Apache License, Version 2.0 #
# which accompanies this distribution, and is available at #
# http://www.apache.org/licenses/LICENSE-2.0 #
###############################################################################
from discover.events.event_instance_delete import EventInstanceDelete
from test.event_based_scan.test_data.event_payload_instance_delete import EVENT_PAYLOAD_INSTANCE_DELETE, \
INSTANCE_DOCUMENT
from test.event_based_scan.test_event_delete_base import TestEventDeleteBase
class TestInstanceDelete(TestEventDeleteBase):
def setUp(self):
super().setUp()
self.values = EVENT_PAYLOAD_INSTANCE_DELETE
def test_handle_instance_delete(self):
self.handle_delete(handler=EventInstanceDelete(),
db_object=INSTANCE_DOCUMENT)
|