Skip to content

Commit 15a986f

Browse files
committed
allergies: Split into one deftest per test
1 parent a06e645 commit 15a986f

File tree

1 file changed

+148
-59
lines changed

1 file changed

+148
-59
lines changed

exercises/practice/allergies/test/allergies_test.clj

+148-59
Original file line numberDiff line numberDiff line change
@@ -2,123 +2,212 @@
22
(:require [clojure.test :refer [deftest testing is]]
33
allergies))
44

5-
(deftest testing-for-eggs-allergy
5+
(deftest test-17fc7296-2440-4ac4-ad7b-d07c321bc5a0
66
(testing "Testing for eggs allergy -> not allergic to anything"
7-
(is (false? (allergies/allergic-to? 0 :eggs))))
7+
(is (false? (allergies/allergic-to? 0 :eggs)))))
8+
9+
(deftest test-07ced27b-1da5-4c2e-8ae2-cb2791437546
810
(testing "Testing for eggs allergy -> allergic only to eggs"
9-
(is (true? (allergies/allergic-to? 1 :eggs))))
11+
(is (true? (allergies/allergic-to? 1 :eggs)))))
12+
13+
(deftest test-5035b954-b6fa-4b9b-a487-dae69d8c5f96
1014
(testing "Testing for eggs allergy -> allergic to eggs and something else"
11-
(is (true? (allergies/allergic-to? 3 :eggs))))
15+
(is (true? (allergies/allergic-to? 3 :eggs)))))
16+
17+
(deftest test-64a6a83a-5723-4b5b-a896-663307403310
1218
(testing "Testing for eggs allergy -> allergic to something, but not eggs"
13-
(is (false? (allergies/allergic-to? 2 :eggs))))
19+
(is (false? (allergies/allergic-to? 2 :eggs)))))
20+
21+
(deftest test-90c8f484-456b-41c4-82ba-2d08d93231c6
1422
(testing "Testing for eggs allergy -> allergic to everything"
1523
(is (true? (allergies/allergic-to? 255 :eggs)))))
1624

17-
(deftest testing-for-peanuts-allergy
25+
(deftest test-d266a59a-fccc-413b-ac53-d57cb1f0db9d
1826
(testing "Testing for peanuts allergy -> not allergic to anything"
19-
(is (false? (allergies/allergic-to? 0 :peanuts))))
27+
(is (false? (allergies/allergic-to? 0 :peanuts)))))
28+
29+
(deftest test-ea210a98-860d-46b2-a5bf-50d8995b3f2a
2030
(testing "Testing for peanuts allergy -> allergic only to peanuts"
21-
(is (true? (allergies/allergic-to? 2 :peanuts))))
31+
(is (true? (allergies/allergic-to? 2 :peanuts)))))
32+
33+
(deftest test-eac69ae9-8d14-4291-ac4b-7fd2c73d3a5b
2234
(testing "Testing for peanuts allergy -> allergic to peanuts and something else"
23-
(is (true? (allergies/allergic-to? 7 :peanuts))))
35+
(is (true? (allergies/allergic-to? 7 :peanuts)))))
36+
37+
(deftest test-9152058c-ce39-4b16-9b1d-283ec6d25085
2438
(testing "Testing for peanuts allergy -> allergic to something, but not peanuts"
25-
(is (false? (allergies/allergic-to? 5 :peanuts))))
39+
(is (false? (allergies/allergic-to? 5 :peanuts)))))
40+
41+
(deftest test-d2d71fd8-63d5-40f9-a627-fbdaf88caeab
2642
(testing "Testing for peanuts allergy -> allergic to everything"
2743
(is (true? (allergies/allergic-to? 255 :peanuts)))))
2844

29-
(deftest testing-for-shellfish-allergy
45+
(deftest test-b948b0a1-cbf7-4b28-a244-73ff56687c80
3046
(testing "Testing for shellfish allergy -> not allergic to anything"
31-
(is (false? (allergies/allergic-to? 0 :shellfish))))
47+
(is (false? (allergies/allergic-to? 0 :shellfish)))))
48+
49+
(deftest test-9ce9a6f3-53e9-4923-85e0-73019047c567
3250
(testing "Testing for shellfish allergy -> allergic only to shellfish"
33-
(is (true? (allergies/allergic-to? 4 :shellfish))))
51+
(is (true? (allergies/allergic-to? 4 :shellfish)))))
52+
53+
(deftest test-b272fca5-57ba-4b00-bd0c-43a737ab2131
3454
(testing "Testing for shellfish allergy -> allergic to shellfish and something else"
35-
(is (true? (allergies/allergic-to? 14 :shellfish))))
55+
(is (true? (allergies/allergic-to? 14 :shellfish)))))
56+
57+
(deftest test-21ef8e17-c227-494e-8e78-470a1c59c3d8
3658
(testing "Testing for shellfish allergy -> allergic to something, but not shellfish"
37-
(is (false? (allergies/allergic-to? 10 :shellfish))))
59+
(is (false? (allergies/allergic-to? 10 :shellfish)))))
60+
61+
(deftest test-cc789c19-2b5e-4c67-b146-625dc8cfa34e
3862
(testing "Testing for shellfish allergy -> allergic to everything"
3963
(is (true? (allergies/allergic-to? 255 :shellfish)))))
4064

41-
(deftest testing-for-strawberries-allergy
65+
(deftest test-651bde0a-2a74-46c4-ab55-02a0906ca2f5
4266
(testing "Testing for strawberries allergy -> not allergic to anything"
43-
(is (false? (allergies/allergic-to? 0 :strawberries))))
67+
(is (false? (allergies/allergic-to? 0 :strawberries)))))
68+
69+
(deftest test-b649a750-9703-4f5f-b7f7-91da2c160ece
4470
(testing "Testing for strawberries allergy -> allergic only to strawberries"
45-
(is (true? (allergies/allergic-to? 8 :strawberries))))
71+
(is (true? (allergies/allergic-to? 8 :strawberries)))))
72+
73+
(deftest test-50f5f8f3-3bac-47e6-8dba-2d94470a4bc6
4674
(testing "Testing for strawberries allergy -> allergic to strawberries and something else"
47-
(is (true? (allergies/allergic-to? 28 :strawberries))))
75+
(is (true? (allergies/allergic-to? 28 :strawberries)))))
76+
77+
(deftest test-23dd6952-88c9-48d7-a7d5-5d0343deb18d
4878
(testing "Testing for strawberries allergy -> allergic to something, but not strawberries"
49-
(is (false? (allergies/allergic-to? 20 :strawberries))))
79+
(is (false? (allergies/allergic-to? 20 :strawberries)))))
80+
81+
(deftest test-74afaae2-13b6-43a2-837a-286cd42e7d7e
5082
(testing "Testing for strawberries allergy -> allergic to everything"
5183
(is (true? (allergies/allergic-to? 255 :strawberries)))))
5284

53-
(deftest testing-for-tomatoes-allergy
85+
(deftest test-c49a91ef-6252-415e-907e-a9d26ef61723
5486
(testing "Testing for tomatoes allergy -> not allergic to anything"
55-
(is (false? (allergies/allergic-to? 0 :tomatoes))))
87+
(is (false? (allergies/allergic-to? 0 :tomatoes)))))
88+
89+
(deftest test-b69c5131-b7d0-41ad-a32c-e1b2cc632df8
5690
(testing "Testing for tomatoes allergy -> allergic only to tomatoes"
57-
(is (true? (allergies/allergic-to? 16 :tomatoes))))
91+
(is (true? (allergies/allergic-to? 16 :tomatoes)))))
92+
93+
(deftest test-1ca50eb1-f042-4ccf-9050-341521b929ec
5894
(testing "Testing for tomatoes allergy -> allergic to tomatoes and something else"
59-
(is (true? (allergies/allergic-to? 56 :tomatoes))))
95+
(is (true? (allergies/allergic-to? 56 :tomatoes)))))
96+
97+
(deftest test-e9846baa-456b-4eff-8025-034b9f77bd8e
6098
(testing "Testing for tomatoes allergy -> allergic to something, but not tomatoes"
61-
(is (false? (allergies/allergic-to? 40 :tomatoes))))
99+
(is (false? (allergies/allergic-to? 40 :tomatoes)))))
100+
101+
(deftest test-b2414f01-f3ad-4965-8391-e65f54dad35f
62102
(testing "Testing for tomatoes allergy -> allergic to everything"
63103
(is (true? (allergies/allergic-to? 255 :tomatoes)))))
64104

65-
(deftest testing-for-chocolate-allergy
105+
(deftest test-978467ab-bda4-49f7-b004-1d011ead947c
66106
(testing "Testing for chocolate allergy -> not allergic to anything"
67-
(is (false? (allergies/allergic-to? 0 :chocolate))))
107+
(is (false? (allergies/allergic-to? 0 :chocolate)))))
108+
109+
(deftest test-59cf4e49-06ea-4139-a2c1-d7aad28f8cbc
68110
(testing "Testing for chocolate allergy -> allergic only to chocolate"
69-
(is (true? (allergies/allergic-to? 32 :chocolate))))
111+
(is (true? (allergies/allergic-to? 32 :chocolate)))))
112+
113+
(deftest test-b0a7c07b-2db7-4f73-a180-565e07040ef1
70114
(testing "Testing for chocolate allergy -> allergic to chocolate and something else"
71-
(is (true? (allergies/allergic-to? 112 :chocolate))))
115+
(is (true? (allergies/allergic-to? 112 :chocolate)))))
116+
117+
(deftest test-f5506893-f1ae-482a-b516-7532ba5ca9d2
72118
(testing "Testing for chocolate allergy -> allergic to something, but not chocolate"
73-
(is (false? (allergies/allergic-to? 80 :chocolate))))
119+
(is (false? (allergies/allergic-to? 80 :chocolate)))))
120+
121+
(deftest test-02debb3d-d7e2-4376-a26b-3c974b6595c6
74122
(testing "Testing for chocolate allergy -> allergic to everything"
75123
(is (true? (allergies/allergic-to? 255 :chocolate)))))
76124

77-
(deftest testing-for-pollen-allergy
125+
(deftest test-17f4a42b-c91e-41b8-8a76-4797886c2d96
78126
(testing "Testing for pollen allergy -> not allergic to anything"
79-
(is (false? (allergies/allergic-to? 0 :pollen))))
127+
(is (false? (allergies/allergic-to? 0 :pollen)))))
128+
129+
(deftest test-7696eba7-1837-4488-882a-14b7b4e3e399
80130
(testing "Testing for pollen allergy -> allergic only to pollen"
81-
(is (true? (allergies/allergic-to? 64 :pollen))))
131+
(is (true? (allergies/allergic-to? 64 :pollen)))))
132+
133+
(deftest test-9a49aec5-fa1f-405d-889e-4dfc420db2b6
82134
(testing "Testing for pollen allergy -> allergic to pollen and something else"
83-
(is (true? (allergies/allergic-to? 224 :pollen))))
135+
(is (true? (allergies/allergic-to? 224 :pollen)))))
136+
137+
(deftest test-3cb8e79f-d108-4712-b620-aa146b1954a9
84138
(testing "Testing for pollen allergy -> allergic to something, but not pollen"
85-
(is (false? (allergies/allergic-to? 160 :pollen))))
139+
(is (false? (allergies/allergic-to? 160 :pollen)))))
140+
141+
(deftest test-1dc3fe57-7c68-4043-9d51-5457128744b2
86142
(testing "Testing for pollen allergy -> allergic to everything"
87143
(is (true? (allergies/allergic-to? 255 :pollen)))))
88144

89-
(deftest testing-for-cats-allergy
145+
(deftest test-d3f523d6-3d50-419b-a222-d4dfd62ce314
90146
(testing "Testing for cats allergy -> not allergic to anything"
91-
(is (false? (allergies/allergic-to? 0 :cats))))
147+
(is (false? (allergies/allergic-to? 0 :cats)))))
148+
149+
(deftest test-eba541c3-c886-42d3-baef-c048cb7fcd8f
92150
(testing "Testing for cats allergy -> allergic only to cats"
93-
(is (true? (allergies/allergic-to? 128 :cats))))
151+
(is (true? (allergies/allergic-to? 128 :cats)))))
152+
153+
(deftest test-ba718376-26e0-40b7-bbbe-060287637ea5
94154
(testing "Testing for cats allergy -> allergic to cats and something else"
95-
(is (true? (allergies/allergic-to? 192 :cats))))
155+
(is (true? (allergies/allergic-to? 192 :cats)))))
156+
157+
(deftest test-3c6dbf4a-5277-436f-8b88-15a206f2d6c4
96158
(testing "Testing for cats allergy -> allergic to something, but not cats"
97-
(is (false? (allergies/allergic-to? 64 :cats))))
159+
(is (false? (allergies/allergic-to? 64 :cats)))))
160+
161+
(deftest test-1faabb05-2b98-4995-9046-d83e4a48a7c1
98162
(testing "Testing for cats allergy -> allergic to everything"
99163
(is (true? (allergies/allergic-to? 255 :cats)))))
100164

101-
(deftest list-when
102-
(testing "List when: no allergies"
103-
(is (= [] (allergies/allergies 0))))
104-
(testing "List when: allergic to just eggs"
105-
(is (= [:eggs] (allergies/allergies 1))))
106-
(testing "List when: allergic to just peanuts"
107-
(is (= [:peanuts] (allergies/allergies 2))))
108-
(testing "List when: allergic to just strawberries"
109-
(is (= [:strawberries] (allergies/allergies 8))))
110-
(testing "List when: allergic to eggs and peanuts"
111-
(is (= [:eggs :peanuts] (allergies/allergies 3))))
112-
(testing "List when: allergic to more than eggs but not peanuts"
113-
(is (= [:eggs :shellfish] (allergies/allergies 5))))
114-
(testing "List when: allergic to lots of stuff"
165+
(deftest test-f9c1b8e7-7dc5-4887-aa93-cebdcc29dd8f
166+
(testing "List when: -> no allergies"
167+
(is (= []
168+
(allergies/allergies 0)))))
169+
170+
(deftest test-9e1a4364-09a6-4d94-990f-541a94a4c1e8
171+
(testing "List when: -> just eggs"
172+
(is (= [:eggs]
173+
(allergies/allergies 1)))))
174+
175+
(deftest test-8851c973-805e-4283-9e01-d0c0da0e4695
176+
(testing "List when: -> just peanuts"
177+
(is (= [:peanuts]
178+
(allergies/allergies 2)))))
179+
180+
(deftest test-2c8943cb-005e-435f-ae11-3e8fb558ea98
181+
(testing "List when: -> just strawberries"
182+
(is (= [:strawberries]
183+
(allergies/allergies 8)))))
184+
185+
(deftest test-6fa95d26-044c-48a9-8a7b-9ee46ec32c5c
186+
(testing "List when: -> eggs and peanuts"
187+
(is (= [:eggs :peanuts]
188+
(allergies/allergies 3)))))
189+
190+
(deftest test-19890e22-f63f-4c5c-a9fb-fb6eacddfe8e
191+
(testing "List when: -> more than eggs but not peanuts"
192+
(is (= [:eggs :shellfish]
193+
(allergies/allergies 5)))))
194+
195+
(deftest test-4b68f470-067c-44e4-889f-c9fe28917d2f
196+
(testing "List when: -> lots of stuff"
115197
(is (= [:strawberries :tomatoes :chocolate :pollen :cats]
116-
(allergies/allergies 248))))
117-
(testing "List when: allergic to everything"
198+
(allergies/allergies 248)))))
199+
200+
(deftest test-0881b7c5-9efa-4530-91bd-68370d054bc7
201+
(testing "List when: -> everything"
118202
(is (= [:eggs :peanuts :shellfish :strawberries :tomatoes :chocolate :pollen :cats]
119-
(allergies/allergies 255))))
203+
(allergies/allergies 255)))))
204+
205+
(deftest test-12ce86de-b347-42a0-ab7c-2e0570f0c65b
120206
(testing "List when: no allergen score parts"
121207
(is (= [:eggs :shellfish :strawberries :tomatoes :chocolate :pollen :cats]
122-
(allergies/allergies 509))))
208+
(allergies/allergies 509)))))
209+
210+
(deftest test-93c2df3e-4f55-4fed-8116-7513092819cd
123211
(testing "List when: no allergen score parts without highest valid score"
124-
(is (= [:eggs] (allergies/allergies 257)))))
212+
(is (= [:eggs]
213+
(allergies/allergies 257)))))

0 commit comments

Comments
 (0)