blob: 54ff94e0e82f6b0056e5aa71ec495e1c7cc6a498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
(ns clarktown.correctors.list-block-test
(:require
[clojure.test :refer [deftest testing is]]
[clarktown.correctors.list-block :as corrector]))
(deftest line-block-corrector-test
(testing "Empty line above"
(let [line "1. Hello"
lines ["Some text goes here" line]
index 1]
(is (true? (corrector/newline-above? lines line index)))))
(testing "Empty line above II"
(let [line "* Hello"
lines ["Some text goes here" line]
index 1]
(is (true? (corrector/newline-above? lines line index)))))
(testing "No empty line above"
(let [line "1. Hello"
lines ["Some text goes here" "\n" line]
index 2]
(is (false? (corrector/newline-above? lines line index)))))
(testing "No empty line above II"
(let [line "* Hello"
lines ["Some text goes here" "\n" line]
index 2]
(is (false? (corrector/newline-above? lines line index)))))
(testing "No empty line above III"
(let [line "* Hello"
lines ["Some text here" "* Asd" line]
index 2]
(is (false? (corrector/newline-above? lines line index)))))
(testing "Empty line below"
(let [line "1. Hello"
lines [line "Some text goes here"]
index 0]
(is (true? (corrector/newline-below? lines line index)))))
(testing "Empty line below II"
(let [line "* Hello"
lines [line "Some text goes here"]
index 0]
(is (true? (corrector/newline-below? lines line index)))))
(testing "No empty line below"
(let [line "1. Hello"
lines [line "\n" "Some text goes here"]
index 0]
(is (false? (corrector/newline-below? lines line index)))))
(testing "No empty line below II"
(let [line "* Hello"
lines [line "\n" "Some text goes here"]
index 0]
(is (false? (corrector/newline-below? lines line index)))))
(testing "No empty line below III"
(let [line "* Hello"
lines [line "* Asd" "Some text goes here"]
index 0]
(is (false? (corrector/newline-below? lines line index))))))
|