aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/pgp/tests/test_inline.py
diff options
context:
space:
mode:
authorJ08nY2017-07-18 15:25:43 +0200
committerJ08nY2017-07-18 15:25:43 +0200
commit23db01a1762c056a75c94d44177462dea0a383a1 (patch)
tree8c35bf21719e5596271afb8bdfd201ac18ab38c8 /src/mailman_pgp/pgp/tests/test_inline.py
parent33e8fe52ea3dea2afe57af996df3d67dced344f4 (diff)
downloadmailman-pgp-23db01a1762c056a75c94d44177462dea0a383a1.tar.gz
mailman-pgp-23db01a1762c056a75c94d44177462dea0a383a1.tar.zst
mailman-pgp-23db01a1762c056a75c94d44177462dea0a383a1.zip
Diffstat (limited to 'src/mailman_pgp/pgp/tests/test_inline.py')
-rw-r--r--src/mailman_pgp/pgp/tests/test_inline.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mailman_pgp/pgp/tests/test_inline.py b/src/mailman_pgp/pgp/tests/test_inline.py
index a89963a..0a012f7 100644
--- a/src/mailman_pgp/pgp/tests/test_inline.py
+++ b/src/mailman_pgp/pgp/tests/test_inline.py
@@ -18,7 +18,6 @@
"""Tests for the inline wrapper."""
from parameterized import parameterized
-from public import public
from mailman_pgp.pgp.inline import InlineWrapper
from mailman_pgp.pgp.tests.base import load_key, load_message, WrapperTestCase
@@ -28,7 +27,6 @@ class InlineWrapperTestCase(WrapperTestCase):
wrapper = InlineWrapper
-@public
class TestSigning(InlineWrapperTestCase):
@parameterized.expand([
(load_message('inline_cleartext_signed.eml'),
@@ -85,7 +83,6 @@ class TestSigning(InlineWrapperTestCase):
self.verify(message, key, valid)
-@public
class TestEncryption(InlineWrapperTestCase):
@parameterized.expand([
(load_message('inline_encrypted.eml'),
@@ -137,7 +134,6 @@ class TestEncryption(InlineWrapperTestCase):
self.decrypt(message, key, clear)
-@public
class TestKeys(InlineWrapperTestCase):
@parameterized.expand([
(load_message('inline_privkey.eml'),
@@ -162,7 +158,6 @@ class TestKeys(InlineWrapperTestCase):
self.keys(message, keys)
-@public
class TestCombined(InlineWrapperTestCase):
@parameterized.expand([
(load_message('clear.eml'),