Sha256: 47320fa4e42ee9d98cc30f031ddbca18c565e686723f374b82eee610b56b53ed

Contents?: true

Size: 1.17 KB

Versions: 343

Compression:

Stored size: 1.17 KB

Contents

(ql:quickload "lisp-unit")
#-xlisp-test (load "atbash-cipher")

(defpackage #:atbash-cipher-test
  (:use #:common-lisp #:lisp-unit))

(in-package #:atbash-cipher-test)

(define-test encode-no
  (assert-equal "ml" (atbash-cipher:encode "no")))

(define-test encode-yes
  (assert-equal "bvh" (atbash-cipher:encode "yes")))

(define-test encode-OMG
  (assert-equal "lnt" (atbash-cipher:encode "OMG")))

(define-test encode-O-M-G
  (assert-equal "lnt" (atbash-cipher:encode "O M G")))

(define-test encode-long-word
  (assert-equal "nrmwy oldrm tob"
                (atbash-cipher:encode "mindblowingly")))

(define-test encode-numbers
  (assert-equal "gvhgr mt123 gvhgr mt"
                (atbash-cipher:encode "Testing, 1 2 3, testing.")))

(define-test encode-sentence
  (assert-equal "gifgs rhurx grlm"
                (atbash-cipher:encode "Truth is fiction.")))

(define-test encode-all-the-things
  (let ((plaintext "The quick brown fox jumps over the lazy dog.")
        (cipher "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt"))
    (assert-equal cipher (atbash-cipher:encode plaintext))))

#-xlisp-test
(let ((*print-errors* t)
      (*print-failures* t))
  (run-tests :all :atbash-cipher-test))

Version data entries

343 entries across 343 versions & 1 rubygems

Version Path
trackler-2.2.1.159 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.158 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.157 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.156 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.155 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.154 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.153 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.152 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.151 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.150 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.149 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.148 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.147 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.146 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.145 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.144 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.143 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.142 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.141 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp
trackler-2.2.1.140 tracks/common-lisp/exercises/atbash-cipher/atbash-cipher-test.lisp