Sha256: 9614bbafaf2f38b8ab98c90eb9abbea7b08c6d3679ae521ceea2fb699bd7f529

Contents?: true

Size: 1.02 KB

Versions: 161

Compression:

Stored size: 1.02 KB

Contents

(ns pangram-test
  (:require [clojure.test :refer [is deftest]]
            [pangram :refer [pangram?]]))

(deftest empty-sentence
  (is (false? (pangram? ""))))

(deftest lowercase-pangram
  (is (pangram? "the quick brown fox jumps over the lazy dog")))

(deftest missing-character-x
  (is
   (false?
    (pangram? "a quick movement of the enemy will jeopardize five gunboats"))))

(deftest another-missing-character-x
  (is
   (false?
    (pangram? "the quick brown fish jumps over the lazy dog"))))

(deftest with-underscores
  (is (pangram? "the_quick_brown_fox_jumps_over_the_lazy_dog")))

(deftest with-numbers
  (is (pangram? "the 1 quick brown fox jumps over the 2 lazy dogs")))

(deftest missing-letters-replaced-by-numbers
  (is
   (false?
    (pangram? "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog"))))

(deftest mixed-case-and-punctuation
  (is (pangram? "\"Five quacking Zephyrs jolt my wax bed.\"")))

(deftest upper-and-lower-not-counted-separately
  (is
    (false?
      (pangram? "the quick brown fox jumps over with lazy FX"))))

Version data entries

161 entries across 161 versions & 1 rubygems

Version Path
trackler-2.2.1.18 tracks/clojure/exercises/pangram/test/pangram_test.clj