From 3d33de4d468c722e414155d9114310d09ef832a8 Mon Sep 17 00:00:00 2001
From: ulif <uli@gnufix.de>
Date: Sun, 4 Jun 2017 21:06:42 +0200
Subject: [PATCH] Remove obsolete test.

---
 tests/test_wordlist.py | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/tests/test_wordlist.py b/tests/test_wordlist.py
index 08c9b5f..dc35bb6 100644
--- a/tests/test_wordlist.py
+++ b/tests/test_wordlist.py
@@ -188,15 +188,6 @@ class TestWordList(object):
             result = tuple(w_list)
         assert result == ("foo", "bar", "baz")
 
-    def test_open_file_descriptor_signed(self):
-        # we can handle signed wordlists from open file descriptors
-        in_path = os.path.join(
-            os.path.dirname(__file__), "sample_signed_wordlist.asc")
-        with open(str(in_path), "r") as my_open_file:
-            w_list = WordList(my_open_file)
-            result = tuple(w_list)
-        assert ("foo", "bar", "-dash-at-start", "baz") == result
-
     def test_detect_unsigned_wordlists(self, tmpdir):
         # we can detect unsigned wordlist files.
         in_file = tmpdir.mkdir("work").join("mywordlist")
-- 
GitLab