|
4 | 4 |
|
5 | 5 | ;;; Code:
|
6 | 6 |
|
| 7 | + |
7 | 8 | (load-file "raindrops.el")
|
8 | 9 | (declare-function convert "raindrops.el" (n))
|
9 | 10 |
|
10 |
| -(ert-deftest test-1 () |
11 |
| - (should (equal "1" |
12 |
| - (convert 1)))) |
13 | 11 |
|
14 |
| -(ert-deftest test-3 () |
15 |
| - (should (equal "Pling" |
16 |
| - (convert 3)))) |
| 12 | +(ert-deftest the-sound-for-1-is-1 () |
| 13 | + (should (string= (convert 1) "1"))) |
| 14 | + |
| 15 | + |
| 16 | +(ert-deftest the-sound-for-3-is-Pling () |
| 17 | + (should (string= (convert 3) "Pling"))) |
| 18 | + |
| 19 | + |
| 20 | +(ert-deftest the-sound-for-5-is-Plang () |
| 21 | + (should (string= (convert 5) "Plang"))) |
| 22 | + |
| 23 | + |
| 24 | +(ert-deftest the-sound-for-7-is-Plong () |
| 25 | + (should (string= (convert 7) "Plong"))) |
| 26 | + |
| 27 | + |
| 28 | +(ert-deftest the-sound-for-6-is-Pling () |
| 29 | + (should (string= (convert 6) "Pling" ))) |
| 30 | + |
| 31 | + |
| 32 | +(ert-deftest the-sound-for-8-is-8 () |
| 33 | + (should (string= (convert 8) "8"))) |
| 34 | + |
| 35 | + |
| 36 | +(ert-deftest the-sound-for-9-is-Pling () |
| 37 | + (should (string= (convert 9) "Pling" ))) |
| 38 | + |
| 39 | + |
| 40 | +(ert-deftest the-sound-for-10-is-Plang () |
| 41 | + (should (string= (convert 10) "Plang"))) |
| 42 | + |
| 43 | + |
| 44 | +(ert-deftest the-sound-for-14-is-Plong () |
| 45 | + (should (string= (convert 14) "Plong"))) |
| 46 | + |
| 47 | + |
| 48 | +(ert-deftest the-sound-for-15-is-PlingPlong () |
| 49 | + (should (string= (convert 15) "PlingPlang"))) |
| 50 | + |
| 51 | + |
| 52 | +(ert-deftest the-sound-for-21-is-PlingPlong () |
| 53 | + (should (string= (convert 21) "PlingPlong"))) |
| 54 | + |
| 55 | + |
| 56 | +(ert-deftest the-sound-for-25-is-Plang () |
| 57 | + (should (string= (convert 25) "Plang"))) |
17 | 58 |
|
18 |
| -(ert-deftest test-5 () |
19 |
| - (should (equal "Plang" |
20 |
| - (convert 5)))) |
21 | 59 |
|
22 |
| -(ert-deftest test-7 () |
23 |
| - (should (equal "Plong" |
24 |
| - (convert 7)))) |
| 60 | +(ert-deftest the-sound-for-27-is-Pling () |
| 61 | + (should (string= (convert 27) "Pling"))) |
25 | 62 |
|
26 |
| -(ert-deftest test-6 () |
27 |
| - (should (equal "Pling" |
28 |
| - (convert 6)))) |
29 | 63 |
|
30 |
| -(ert-deftest test-9 () |
31 |
| - (should (equal "Pling" |
32 |
| - (convert 9)))) |
| 64 | +(ert-deftest the-sound-for-35-is-PlangPlong () |
| 65 | + (should (string= (convert 35) "PlangPlong"))) |
33 | 66 |
|
34 |
| -(ert-deftest test-10 () |
35 |
| - (should (equal "Plang" |
36 |
| - (convert 10)))) |
37 | 67 |
|
38 |
| -(ert-deftest test-15 () |
39 |
| - (should (equal "PlingPlang" |
40 |
| - (convert 15)))) |
| 68 | +(ert-deftest the-sound-for-49-is-Plong () |
| 69 | + (should (string= (convert 49) "Plong"))) |
41 | 70 |
|
42 |
| -(ert-deftest test-21 () |
43 |
| - (should (equal "PlingPlong" |
44 |
| - (convert 21)))) |
45 | 71 |
|
46 |
| -(ert-deftest test-25 () |
47 |
| - (should (equal "Plang" |
48 |
| - (convert 25)))) |
| 72 | +(ert-deftest the-sound-for-52-is-52 () |
| 73 | + (should (string= (convert 52) "52"))) |
49 | 74 |
|
50 |
| -(ert-deftest test-35 () |
51 |
| - (should (equal "PlangPlong" |
52 |
| - (convert 35)))) |
53 | 75 |
|
54 |
| -(ert-deftest test-49 () |
55 |
| - (should (equal "Plong" |
56 |
| - (convert 49)))) |
| 76 | +(ert-deftest the-sound-for-105-is-PlingPlangPlong () |
| 77 | + (should (string= (convert 105) "PlingPlangPlong"))) |
57 | 78 |
|
58 |
| -(ert-deftest test-52 () |
59 |
| - (should (equal "52" |
60 |
| - (convert 52)))) |
61 | 79 |
|
62 |
| -(ert-deftest test-105 () |
63 |
| - (should (equal "PlingPlangPlong" |
64 |
| - (convert 105)))) |
| 80 | +(ert-deftest the-sound-for-3125-is-Plang () |
| 81 | + (should (string= (convert 3125) "Plang"))) |
65 | 82 |
|
66 |
| -(ert-deftest test-12121 () |
67 |
| - (should (equal "12121" |
68 |
| - (convert 12121)))) |
69 | 83 |
|
70 | 84 | (provide 'raindrops-test)
|
71 | 85 | ;;; raindrops-test.el ends here
|
0 commit comments