Move previous cryptopals work into an Erlang subfolder, start cryptopals in Python 3
[sandbox] / cryptopals / 01.01 / hex_tests.erl
diff --git a/cryptopals/01.01/hex_tests.erl b/cryptopals/01.01/hex_tests.erl
deleted file mode 100644 (file)
index 80d95da..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
--module(hex_tests).
--include_lib("eunit/include/eunit.hrl").
-
-decode_test() -> ?assertEqual(
-    <<1,35,69,103,137,171,205,239>>,
-    hex:decode("0123456789abcdef")).