Skip to content

Commit 177d2fe

Browse files
authored
Sync pangram tests and update stub (#358)
1 parent c711135 commit 177d2fe

File tree

2 files changed

+39
-25
lines changed

2 files changed

+39
-25
lines changed
+34-23
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,53 @@
1-
;;; pagram-test.el --- Tests for Pangram (exercism) -*- lexical-binding: t; -*-
1+
;;; pangram-test.el --- Tests for Pangram (exercism) -*- lexical-binding: t; -*-
22

33
;;; Commentary:
4-
;; Common test data version: 1.3.0 d79e13e
54

65
;;; Code:
76

7+
88
(load-file "pangram.el")
99
(declare-function pangramp "pangram.el" (phrase))
1010

11-
(ert-deftest sentence-empty ()
12-
(should (equal nil (pangramp ""))))
1311

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+
1635

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")))
1938

20-
(ert-deftest missing-character-x ()
21-
(should (equal nil (pangramp "a quick movement of the enemy will jeopardize five gunboats"))))
2239

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")))
2542

26-
(ert-deftest pangram-with-underscores ()
27-
(should (equal t (pangramp "the_quick_brown_fox_jumps_over_the_lazy_dog"))))
2843

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.\"")))
3146

32-
(ert-deftest missing-letters-replaced-by-numbers ()
33-
(should (equal nil (pangramp "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog"))))
3447

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")))
3750

38-
(ert-deftest a-m-and-A-M-are-26-different-characters-but-not-a-pangram ()
39-
(should (equal nil (pangramp "abcdefghijklm ABCDEFGHIJKLM"))))
4051

4152
(provide 'pangram-test)
42-
;;; pagram-test.el ends here
53+
;;; pangram-test.el ends here

exercises/practice/pangram/pangram.el

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
;;; Commentary:
44

5-
(defun pangramp (phrase)
65
;;; Code:
7-
)
6+
7+
8+
(defun pangramp (phrase)
9+
(error "Delete this S-Expression and write your own implementation"))
10+
811

912
(provide 'pangram)
1013
;;; pangram.el ends here

0 commit comments

Comments
 (0)