Sha256: 026eba121778d49c85492a5a456d4fff37ba3caa819b29c76819ddf19446ccb7
Contents?: true
Size: 1.49 KB
Versions: 38
Compression:
Stored size: 1.49 KB
Contents
port module Main exposing (..) import Test.Runner.Node exposing (run) import Json.Encode exposing (Value) import Test exposing (..) import Expect import AtbashCipher exposing (encode, decode) tests : Test tests = describe "AtbashCipher" [ test "encode no" <| \() -> Expect.equal "ml" (encode "no") , test "encode yes" <| \() -> Expect.equal "bvh" (encode "yes") , test "encode OMG" <| \() -> Expect.equal "lnt" (encode "OMG") , test "encode O M G" <| \() -> Expect.equal "lnt" (encode "O M G") , test "encode long word" <| \() -> Expect.equal "nrmwy oldrm tob" (encode "mindblowingly") , test "encode numbers" <| \() -> Expect.equal "gvhgr mt123 gvhgr mt" (encode "Testing, 1 2 3, testing.") , test "encode sentence" <| \() -> Expect.equal "gifgs rhurx grlm" (encode "Truth is fiction.") , test "encode all things" <| \() -> Expect.equal "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt" (encode "The quick brown fox jumps over the lazy dog.") , test "decode word" <| \() -> Expect.equal "exercism" (decode "vcvix rhn") , test "decode sentence" <| \() -> Expect.equal "anobstacleisoftenasteppingstone" (decode "zmlyh gzxov rhlug vmzhg vkkrm thglm v") ] main : Program Value main = run emit tests port emit : ( String, Value ) -> Cmd msg
Version data entries
38 entries across 38 versions & 1 rubygems