Skip to content

Commit cc3ef34

Browse files
committed
rename test functions, make test descriptions identical to the ones from .toml
1 parent 8588d04 commit cc3ef34

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

exercises/practice/gigasecond/test/gigasecond_test.clj

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

5-
(deftest test-92fbe71c-ea52-4fac-bd77-be38023cacf7
6-
(testing "Date-only specification of time"
5+
(deftest from_test_1
6+
(testing "date-only specification of time"
77
(is (= [2043 1 1] (gigasecond/from 2011 4 25)))))
88

9-
(deftest test-6d86dd16-6f7a-47be-9e58-bb9fb2ae1433
10-
(testing "Second test for date-only specification of time"
9+
(deftest from_test_2
10+
(testing "second test for date-only specification of time"
1111
(is (= [2009 2 19] (gigasecond/from 1977 6 13)))))
1212

13-
(deftest test-77eb8502-2bca-4d92-89d9-7b39ace28dd5
14-
(testing "Third test for date-only specification of time"
13+
(deftest from_test_3
14+
(testing "third test for date-only specification of time"
1515
(is (= [1991 3 27] (gigasecond/from 1959 7 19)))))
1616

17-
(deftest test-fcec307c-7529-49ab-b0fe-20309197618a
17+
(deftest from_test_4
1818
(testing "Does not mutate the input"
1919
(let [date [1959 7 19]
2020
new-date (apply gigasecond/from date)]

0 commit comments

Comments
 (0)