aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_block.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-24 22:27:30 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-24 22:27:30 -0800
commit348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e (patch)
treefc913b5f7c610c03fb702d9f9b5ed000b2301421 /tests/hazmat/primitives/test_block.py
parentb7b7f65e42e9831c3f2f3ddd0b5f021d029b73cb (diff)
parent8d85b058d28d37f1f505292f7cc6311092dd4f39 (diff)
downloadcryptography-348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e.tar.gz
cryptography-348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e.tar.bz2
cryptography-348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e.zip
Merge pull request #346 from reaperhulk/mark-tests-2
Add Actual Test Marks
Diffstat (limited to 'tests/hazmat/primitives/test_block.py')
-rw-r--r--tests/hazmat/primitives/test_block.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py
index 573f5633..22a7c02f 100644
--- a/tests/hazmat/primitives/test_block.py
+++ b/tests/hazmat/primitives/test_block.py
@@ -41,6 +41,7 @@ class DummyCipher(object):
name = "dummy-cipher"
+@pytest.mark.cipher
class TestCipher(object):
def test_creates_encryptor(self, backend):
cipher = Cipher(
@@ -64,6 +65,7 @@ class TestCipher(object):
Cipher(algorithm, mode=None, backend=backend)
+@pytest.mark.cipher
class TestCipherContext(object):
def test_use_after_finalize(self, backend):
cipher = Cipher(
@@ -134,6 +136,7 @@ class TestCipherContext(object):
decryptor.finalize()
+@pytest.mark.cipher
class TestAEADCipherContext(object):
test_aead_exceptions = generate_aead_exception_test(
algorithms.AES,