First commit, with caesar, solitaire, vigenere, monoalphabetic encrypt/decrypt

This commit is contained in:
Smaug123
2016-01-03 20:58:35 +00:00
parent e8bcf6216c
commit 27675bee94
3 changed files with 38 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
using ClassicalCiphers
using Base.Test
# write your own tests here
@test 1 == 1
tests = ["vigenere", "monoalphabetic", "solitaire"]
println("Running tests:")
for t in tests
test_fn = "$t.jl"
println(" * $test_fn")
include(test_fn)
end