Skip to content

Commit 6c40597

Browse files
committed
rename test functions
1 parent dc31554 commit 6c40597

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

exercises/practice/isogram/test/isogram_test.clj

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,58 +2,58 @@
22
(:require [clojure.test :refer [deftest testing is]]
33
isogram))
44

5-
(deftest test-a0e97d2d-669e-47c7-8134-518a1e2c4555
5+
(deftest isogram?_test_1
66
(testing "empty string"
77
(is (true? (isogram/isogram? "")))))
88

9-
(deftest test-9a001b50-f194-4143-bc29-2af5ec1ef652
9+
(deftest isogram?_test_2
1010
(testing "isogram with only lower case characters"
1111
(is (true? (isogram/isogram? "isogram")))))
1212

13-
(deftest test-8ddb0ca3-276e-4f8b-89da-d95d5bae78a4
13+
(deftest isogram?_test_3
1414
(testing "word with one duplicated character"
1515
(is (false? (isogram/isogram? "eleven")))))
1616

17-
(deftest test-6450b333-cbc2-4b24-a723-0b459b34fe18
17+
(deftest isogram?_test_4
1818
(testing "word with one duplicated character from the end of the alphabet"
1919
(is (false? (isogram/isogram? "zzyzx")))))
2020

21-
(deftest test-a15ff557-dd04-4764-99e7-02cc1a385863
21+
(deftest isogram?_test_5
2222
(testing "longest reported english isogram"
2323
(is (true? (isogram/isogram? "subdermatoglyphic")))))
2424

25-
(deftest test-f1a7f6c7-a42f-4915-91d7-35b2ea11c92e
25+
(deftest isogram?_test_6
2626
(testing "word with duplicated character in mixed case"
2727
(is (false? (isogram/isogram? "Alphabet")))))
2828

29-
(deftest test-14a4f3c1-3b47-4695-b645-53d328298942
29+
(deftest isogram?_test_7
3030
(testing "word with duplicated character in mixed case, lowercase first"
3131
(is (false? (isogram/isogram? "alphAbet")))))
3232

33-
(deftest test-423b850c-7090-4a8a-b057-97f1cadd7c42
33+
(deftest isogram?_test_8
3434
(testing "hypothetical isogrammic word with hyphen"
3535
(is (true? (isogram/isogram? "thumbscrew-japingly")))))
3636

37-
(deftest test-93dbeaa0-3c5a-45c2-8b25-428b8eacd4f2
37+
(deftest isogram?_test_9
3838
(testing "hypothetical word with duplicated character following hyphen"
3939
(is (false? (isogram/isogram? "thumbscrew-jappingly")))))
4040

41-
(deftest test-36b30e5c-173f-49c6-a515-93a3e825553f
41+
(deftest isogram?_test_10
4242
(testing "isogram with duplicated hyphen"
4343
(is (true? (isogram/isogram? "six-year-old")))))
4444

45-
(deftest test-cdabafa0-c9f4-4c1f-b142-689c6ee17d93
45+
(deftest isogram?_test_11
4646
(testing "made-up name that is an isogram"
4747
(is (true? (isogram/isogram? "Emily Jung Schwartzkopf")))))
4848

49-
(deftest test-5fc61048-d74e-48fd-bc34-abfc21552d4d
49+
(deftest isogram?_test_12
5050
(testing "duplicated character in the middle"
5151
(is (false? (isogram/isogram? "accentor")))))
5252

53-
(deftest test-310ac53d-8932-47bc-bbb4-b2b94f25a83e
53+
(deftest isogram?_test_13
5454
(testing "same first and last characters"
5555
(is (false? (isogram/isogram? "angola")))))
5656

57-
(deftest test-0d0b8644-0a1e-4a31-a432-2b3ee270d847
57+
(deftest isogram?_test_4
5858
(testing "word with duplicated character and with two hyphens"
5959
(is (false? (isogram/isogram? "up-to-date")))))

0 commit comments

Comments
 (0)