Sha256: e13931b215da1b30ebb1da69f80621ea820f147a7bc9d143ce4d8771d741987a

Contents?: true

Size: 1.84 KB

Versions: 69

Compression:

Stored size: 1.84 KB

Contents

if !System.get_env("EXERCISM_TEST_EXAMPLES") do
  Code.load_file("atbash_cipher.exs", __DIR__)
end

ExUnit.start()
ExUnit.configure(exclude: :pending, trace: true)

defmodule AtbashTest do
  use ExUnit.Case

  # @tag :pending
  test "encode no" do
    assert Atbash.encode("no") == "ml"
  end

  @tag :pending
  test "encode yes" do
    assert Atbash.encode("yes") == "bvh"
  end

  @tag :pending
  test "encode OMG" do
    assert Atbash.encode("OMG") == "lnt"
  end

  @tag :pending
  test "encode O M G" do
    assert Atbash.encode("O M G") == "lnt"
  end

  @tag :pending
  test "encode long word" do
    assert Atbash.encode("mindblowingly") == "nrmwy oldrm tob"
  end

  @tag :pending
  test "encode numbers" do
    assert Atbash.encode("Testing, 1 2 3, testing.") == "gvhgr mt123 gvhgr mt"
  end

  @tag :pending
  test "encode sentence" do
    assert Atbash.encode("Truth is fiction.") == "gifgs rhurx grlm"
  end

  @tag :pending
  test "encode all the things" do
    plaintext = "The quick brown fox jumps over the lazy dog."
    cipher = "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt"
    assert Atbash.encode(plaintext) == cipher
  end

  @tag :pending
  test "decode exercism" do
    cipher = "vcvix rhn"
    plaintext = "exercism"
    assert Atbash.decode(cipher) == plaintext
  end

  @tag :pending
  test "decode a sentence" do
    cipher = "zmlyh gzxov rhlug vmzhg vkkrm thglm v"
    plaintext = "anobstacleisoftenasteppingstone"
    assert Atbash.decode(cipher) == plaintext
  end

  @tag :pending
  test "decode numbers" do
    cipher = "gvhgr mt123 gvhgr mt"
    plaintext = "testing123testing"
    assert Atbash.decode(cipher) == plaintext
  end

  @tag :pending
  test "decode all the letters" do
    cipher = "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt"
    plaintext = "thequickbrownfoxjumpsoverthelazydog"
    assert Atbash.decode(cipher) == plaintext
  end
end

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.179 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.178 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.177 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.176 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.175 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.174 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.173 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.172 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.171 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.170 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.169 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.167 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.166 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.165 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.164 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.163 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.162 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.161 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs
trackler-2.2.1.160 tracks/elixir/exercises/atbash-cipher/atbash_cipher_test.exs