Files
python/exercises/practice/rotational-cipher/rotational_cipher_test.py

19 lines
360 B
Python
Raw Normal View History

import unittest
from rotational_cipher import (
rotate,
)
2020-10-15 12:46:24 -04:00
# Tests adapted from `problem-specifications//canonical-data.json`
2018-06-13 09:12:09 -04:00
class RotationalCipherTest(unittest.TestCase):
# Utility functions
def assertRaisesWithMessage(self, exception):
return self.assertRaisesRegex(exception, r".+")
if __name__ == "__main__":
unittest.main()