Skip to content

Commit f4d080f

Browse files
authored
Sync raindrops tests (#354)
* Sync raindrops tests * Revert result vs expected order * Format stub
1 parent 32c274c commit f4d080f

File tree

2 files changed

+64
-48
lines changed

2 files changed

+64
-48
lines changed

exercises/practice/raindrops/raindrops-test.el

+59-45
Original file line numberDiff line numberDiff line change
@@ -4,68 +4,82 @@
44

55
;;; Code:
66

7+
78
(load-file "raindrops.el")
89
(declare-function convert "raindrops.el" (n))
910

10-
(ert-deftest test-1 ()
11-
(should (equal "1"
12-
(convert 1))))
1311

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

18-
(ert-deftest test-5 ()
19-
(should (equal "Plang"
20-
(convert 5))))
2159

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

26-
(ert-deftest test-6 ()
27-
(should (equal "Pling"
28-
(convert 6))))
2963

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

34-
(ert-deftest test-10 ()
35-
(should (equal "Plang"
36-
(convert 10))))
3767

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

42-
(ert-deftest test-21 ()
43-
(should (equal "PlingPlong"
44-
(convert 21))))
4571

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

50-
(ert-deftest test-35 ()
51-
(should (equal "PlangPlong"
52-
(convert 35))))
5375

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

58-
(ert-deftest test-52 ()
59-
(should (equal "52"
60-
(convert 52))))
6179

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

66-
(ert-deftest test-12121 ()
67-
(should (equal "12121"
68-
(convert 12121))))
6983

7084
(provide 'raindrops-test)
7185
;;; raindrops-test.el ends here

exercises/practice/raindrops/raindrops.el

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

33
;;; Commentary:
44

5-
(defun convert (n)
6-
"Convert integer N to its raindrops string."
75
;;; Code:
8-
)
6+
7+
8+
(defun convert (n)
9+
(error "Delete this S-Expression and write your own implementation"))
10+
911

1012
(provide 'raindrops)
1113
;;; raindrops.el ends here

0 commit comments

Comments
 (0)