1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for the decrypter interface."""
import unittest
from dfvfs.encryption import decrypter
from tests.encryption import test_lib
class DecrypterTestCase(test_lib.DecrypterTestCase):
"""Tests for the decrypter interface."""
def testInitialize(self):
"""Tests the __init__ method."""
test_decrypter = decrypter.Decrypter()
self.assertIsNotNone(test_decrypter)
with self.assertRaises(ValueError):
decrypter.Decrypter(key=b'test1')
if __name__ == '__main__':
unittest.main()
|