From 9e4095e8b75f7235ea5dfef48f06cfef116692d3 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 31 Dec 2016 22:10:12 +0200 Subject: Add hex_to_words and words_to_hex --- pgpwordlist/funcs_tests.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'pgpwordlist/funcs_tests.py') diff --git a/pgpwordlist/funcs_tests.py b/pgpwordlist/funcs_tests.py index a7d1bfb..5473ac8 100644 --- a/pgpwordlist/funcs_tests.py +++ b/pgpwordlist/funcs_tests.py @@ -46,3 +46,11 @@ class WordListQueriesTests(unittest.TestCase): odd_word = pgpwordlist.get_word(hex, 1) self.assertEqual(pgpwordlist.get_hex(even_word), hex) self.assertEqual(pgpwordlist.get_hex(odd_word), hex) + + +class WordStringTests(unittest.TestCase): + + def test_roundtrip_works(self): + hex = 'cafef00d' + words = pgpwordlist.hex_to_words(hex) + self.assertEqual(pgpwordlist.words_to_hex(words), hex) -- cgit v1.2.1