|
1 |
| -;;; pagram-test.el --- Tests for Pangram (exercism) -*- lexical-binding: t; -*- |
| 1 | +;;; pangram-test.el --- Tests for Pangram (exercism) -*- lexical-binding: t; -*- |
2 | 2 |
|
3 | 3 | ;;; Commentary:
|
4 |
| -;; Common test data version: 1.3.0 d79e13e |
5 | 4 |
|
6 | 5 | ;;; Code:
|
7 | 6 |
|
| 7 | + |
8 | 8 | (load-file "pangram.el")
|
9 | 9 | (declare-function pangramp "pangram.el" (phrase))
|
10 | 10 |
|
11 |
| -(ert-deftest sentence-empty () |
12 |
| - (should (equal nil (pangramp "")))) |
13 | 11 |
|
14 |
| -(ert-deftest recognizes-a-perfect-lower-case-pangram () |
15 |
| - (should (equal t (pangramp "abcdefghijklmnopqrstuvwxyz")))) |
| 12 | +(ert-deftest empty-sentence () |
| 13 | + (should-not (pangramp ""))) |
| 14 | + |
| 15 | + |
| 16 | +(ert-deftest perfect-lower-case () |
| 17 | + (should (pangramp "abcdefghijklmnopqrstuvwxyz"))) |
| 18 | + |
| 19 | + |
| 20 | +(ert-deftest only-lower-case () |
| 21 | + (should (pangramp "the quick brown fox jumps over the lazy dog"))) |
| 22 | + |
| 23 | + |
| 24 | +(ert-deftest missing-the-letter-x () |
| 25 | + (should-not (pangramp "a quick movement of the enemy will jeopardize five gunboats"))) |
| 26 | + |
| 27 | + |
| 28 | +(ert-deftest missing-the-letter-h () |
| 29 | + (should-not (pangramp "five boxing wizards jump quickly at it"))) |
| 30 | + |
| 31 | + |
| 32 | +(ert-deftest with-underscores () |
| 33 | + (should (pangramp "the_quick_brown_fox_jumps_over_the_lazy_dog"))) |
| 34 | + |
16 | 35 |
|
17 |
| -(ert-deftest pangram-with-only-lower-case () |
18 |
| - (should (equal t (pangramp "the quick brown fox jumps over the lazy dog")))) |
| 36 | +(ert-deftest with-numbers () |
| 37 | + (should (pangramp "the 1 quick brown fox jumps over the 2 lazy dogs"))) |
19 | 38 |
|
20 |
| -(ert-deftest missing-character-x () |
21 |
| - (should (equal nil (pangramp "a quick movement of the enemy will jeopardize five gunboats")))) |
22 | 39 |
|
23 |
| -(ert-deftest missing-another-character-eg-h () |
24 |
| - (should (equal nil (pangramp "five boxing wizards jump quickly at it")))) |
| 40 | +(ert-deftest missing-letters-replaced-by-numbers () |
| 41 | + (should-not (pangramp "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog"))) |
25 | 42 |
|
26 |
| -(ert-deftest pangram-with-underscores () |
27 |
| - (should (equal t (pangramp "the_quick_brown_fox_jumps_over_the_lazy_dog")))) |
28 | 43 |
|
29 |
| -(ert-deftest pangram-with-numbers () |
30 |
| - (should (equal t (pangramp "the 1 quick brown fox jumps over the 2 lazy dogs")))) |
| 44 | +(ert-deftest mixed-case-and-punctuation () |
| 45 | + (should (pangramp "\"Five quacking Zephyrs jolt my wax bed.\""))) |
31 | 46 |
|
32 |
| -(ert-deftest missing-letters-replaced-by-numbers () |
33 |
| - (should (equal nil (pangramp "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog")))) |
34 | 47 |
|
35 |
| -(ert-deftest pangram-with-mixed-case-and-punctuation () |
36 |
| - (should (equal t (pangramp "\"Five quacking Zephyrs jolt my wax bed.\"")))) |
| 48 | +(ert-deftest a-m-and-A-M-are-26-different-characters-but-not-a-pangram () |
| 49 | + (should-not (pangramp "abcdefghijklm ABCDEFGHIJKLM"))) |
37 | 50 |
|
38 |
| -(ert-deftest a-m-and-A-M-are-26-different-characters-but-not-a-pangram () |
39 |
| - (should (equal nil (pangramp "abcdefghijklm ABCDEFGHIJKLM")))) |
40 | 51 |
|
41 | 52 | (provide 'pangram-test)
|
42 |
| -;;; pagram-test.el ends here |
| 53 | +;;; pangram-test.el ends here |
0 commit comments