Move previous cryptopals work into an Erlang subfolder, start cryptopals in Python 3
[sandbox] / cryptopals-erlang / 01.01 / hex_to_base64_tests.erl
1 -module(hex_to_base64_tests).
2 -include_lib("eunit/include/eunit.hrl").
3
4 basit_test() -> ?assertEqual(
5     "SSdtIGtpbGxpbmcgeW91ciBicmFpbiBsaWtlIGEgcG9pc29ub3VzIG11c2hyb29t",
6     hex_to_base64:hex_to_base64("49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d")).