From 155517aee381838d112afb501a1c998c4891c6fb Mon Sep 17 00:00:00 2001 From: rbowden-r7 Date: Tue, 3 Oct 2023 08:53:48 +0100 Subject: [PATCH] PLGN-394-Adding in new actions for get_user and get_asset information from an rrn --- .../test_close_investigations_in_bulk.py | 21 ------------------- .../unit_test/test_create_threat.py | 21 ------------------- .../unit_test/test_get_a_log.py | 21 ------------------- 3 files changed, 63 deletions(-) delete mode 100644 plugins/rapid7_insightidr/unit_test/test_close_investigations_in_bulk.py delete mode 100644 plugins/rapid7_insightidr/unit_test/test_create_threat.py delete mode 100644 plugins/rapid7_insightidr/unit_test/test_get_a_log.py diff --git a/plugins/rapid7_insightidr/unit_test/test_close_investigations_in_bulk.py b/plugins/rapid7_insightidr/unit_test/test_close_investigations_in_bulk.py deleted file mode 100644 index f2d1a571db..0000000000 --- a/plugins/rapid7_insightidr/unit_test/test_close_investigations_in_bulk.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys -import os - -sys.path.append(os.path.abspath("../")) - -from unittest import TestCase -from komand_rapid7_insightidr.connection.connection import Connection -from komand_rapid7_insightidr.actions.close_investigations_in_bulk import CloseInvestigationsInBulk -import json -import logging - - -class TestCloseInvestigationsInBulk(TestCase): - def test_close_investigations_in_bulk(self): - """ - DO NOT USE PRODUCTION/SENSITIVE DATA FOR UNIT TESTS - - TODO: Implement test cases here - """ - - self.fail("Unimplemented Test Case") diff --git a/plugins/rapid7_insightidr/unit_test/test_create_threat.py b/plugins/rapid7_insightidr/unit_test/test_create_threat.py deleted file mode 100644 index f802f56fa5..0000000000 --- a/plugins/rapid7_insightidr/unit_test/test_create_threat.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys -import os - -sys.path.append(os.path.abspath("../")) - -from unittest import TestCase -from komand_rapid7_insightidr.connection.connection import Connection -from komand_rapid7_insightidr.actions.create_threat import CreateThreat -import json -import logging - - -class TestCreateThreat(TestCase): - def test_create_threat(self): - """ - DO NOT USE PRODUCTION/SENSITIVE DATA FOR UNIT TESTS - - TODO: Implement test cases here - """ - - self.fail("Unimplemented Test Case") diff --git a/plugins/rapid7_insightidr/unit_test/test_get_a_log.py b/plugins/rapid7_insightidr/unit_test/test_get_a_log.py deleted file mode 100644 index 4b6b69a0cc..0000000000 --- a/plugins/rapid7_insightidr/unit_test/test_get_a_log.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys -import os - -sys.path.append(os.path.abspath("../")) - -from unittest import TestCase -from komand_rapid7_insightidr.connection.connection import Connection -from komand_rapid7_insightidr.actions.get_a_log import GetALog -import json -import logging - - -class TestGetALog(TestCase): - def test_get_a_log(self): - """ - DO NOT USE PRODUCTION/SENSITIVE DATA FOR UNIT TESTS - - TODO: Implement test cases here - """ - - self.fail("Unimplemented Test Case")