From f730ea0db7bf3987efb08f23a13b43a78d2acce3 Mon Sep 17 00:00:00 2001 From: Ilya Glotov Date: Tue, 9 Jul 2019 01:13:39 +0300 Subject: [PATCH] Add test for a subdomain slow search --- tests/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/tests.py b/tests/tests.py index 23122c6..a8e727c 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -44,3 +44,5 @@ class TestPyMISPWarningLists(unittest.TestCase): self.assertEqual(results[0].name, 'List of RFC 3849 CIDR blocks') results = self.warninglists.search('1e100.net') self.assertEqual(results[0].name, 'List of known google domains') + results = self.warninglists.search('something.files.1drv.com') + self.assertEqual(results[0].name, 'List of known microsoft domains')