Skip to content

Commit 9ab28fc

Browse files
committed
rename test functions
1 parent 9477b74 commit 9ab28fc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

exercises/practice/transpose/test/transpose_test.clj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,27 @@
66
[coll]
77
(clojure.string/join "\n" coll))
88

9-
(deftest test-404b7262-c050-4df0-a2a2-0cb06cd6a821
9+
(deftest transpose_test_1
1010
(testing "empty string"
1111
(is (= (join-with-line-separator [""])
1212
(transpose/transpose
1313
(join-with-line-separator [""]))))))
1414

15-
(deftest test-a89ce8a3-c940-4703-a688-3ea39412fbcb
15+
(deftest transpose_test_2
1616
(testing "two characters in a row"
1717
(is (= (join-with-line-separator ["A"
1818
"1"])
1919
(transpose/transpose
2020
(join-with-line-separator ["A1"]))))))
2121

22-
(deftest test-855bb6ae-4180-457c-abd0-ce489803ce98
22+
(deftest transpose_test_3
2323
(testing "two characters in a column"
2424
(is (= (join-with-line-separator ["A1"])
2525
(transpose/transpose
2626
(join-with-line-separator ["A"
2727
"1"]))))))
2828

29-
(deftest test-5ceda1c0-f940-441c-a244-0ced197769c8
29+
(deftest transpose_test_4
3030
(testing "simple"
3131
(is (= (join-with-line-separator ["A1"
3232
"B2"
@@ -35,7 +35,7 @@
3535
(join-with-line-separator ["ABC"
3636
"123"]))))))
3737

38-
(deftest test-a54675dd-ae7d-4a58-a9c4-0c20e99a7c1f
38+
(deftest transpose_test_5
3939
(testing "single line"
4040
(is (= (join-with-line-separator ["S"
4141
"i"
@@ -52,7 +52,7 @@
5252
(transpose/transpose
5353
(join-with-line-separator ["Single line."]))))))
5454

55-
(deftest test-0dc2ec0b-549d-4047-aeeb-8029fec8d5c5
55+
(deftest transpose_test_6
5656
(testing "first line longer than second line"
5757
(is (= (join-with-line-separator ["TT"
5858
"hh"
@@ -74,7 +74,7 @@
7474
(join-with-line-separator ["The fourth line."
7575
"The fifth line."]))))))
7676

77-
(deftest test-984e2ec3-b3d3-4b53-8bd6-96f5ef404102
77+
(deftest transpose_test_7
7878
(testing "second line longer than first line"
7979
(is (= (join-with-line-separator ["TT"
8080
"hh"
@@ -96,7 +96,7 @@
9696
(join-with-line-separator ["The first line.",
9797
"The second line."]))))))
9898

99-
(deftest test-eccd3784-45f0-4a3f-865a-360cb323d314
99+
(deftest transpose_test_8
100100
(testing "mixed line length"
101101
(is (= (join-with-line-separator ["TAAA"
102102
"h "
@@ -121,7 +121,7 @@
121121
"A longer line."
122122
"A line."]))))))
123123

124-
(deftest test-85b96b3f-d00c-4f80-8ca2-c8a5c9216c2d
124+
(deftest transpose_test_9
125125
(testing "square"
126126
(is (= (join-with-line-separator ["HEART"
127127
"EMBER"
@@ -135,7 +135,7 @@
135135
"RESIN"
136136
"TREND"]))))))
137137

138-
(deftest test-b9257625-7a53-4748-8863-e08e9d27071d
138+
(deftest transpose_test_10
139139
(testing "rectangle"
140140
(is (= (join-with-line-separator ["FOBS"
141141
"RULE"
@@ -151,7 +151,7 @@
151151
"BLOOMING"
152152
"SEPTETTE"]))))))
153153

154-
(deftest test-b80badc9-057e-4543-bd07-ce1296a1ea2c
154+
(deftest transpose_test_11
155155
(testing "triangle"
156156
(is (= (join-with-line-separator ["TEASER"
157157
" EASER"
@@ -167,7 +167,7 @@
167167
"EEEEE"
168168
"RRRRRR"]))))))
169169

170-
(deftest test-76acfd50-5596-4d05-89f1-5116328a7dd9
170+
(deftest transpose_test_12
171171
(testing "jagged triangle"
172172
(is (= (join-with-line-separator ["123456"
173173
"1 3456"

0 commit comments

Comments
 (0)