diff options
| author | Asko Nõmm <ano@ano.ee> | 2022-05-01 19:52:41 +0300 |
|---|---|---|
| committer | Asko Nõmm <ano@ano.ee> | 2022-05-01 19:52:41 +0300 |
| commit | 64fe2ecd153e6414cf33fc887604a31ee36e7952 (patch) | |
| tree | 95439aa35bad656b36beede18a0ae424e2ce516b /test/clarktown/correctors | |
| parent | e8cb3717a66bf2bf3e5be815ad2c5311311c969e (diff) | |
Implement newline corrector for list block.
Diffstat (limited to 'test/clarktown/correctors')
| -rw-r--r-- | test/clarktown/correctors/list_block_test.clj | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/test/clarktown/correctors/list_block_test.clj b/test/clarktown/correctors/list_block_test.clj new file mode 100644 index 0000000..d435caf --- /dev/null +++ b/test/clarktown/correctors/list_block_test.clj @@ -0,0 +1,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/empty-line-above? lines line index))))) + + (testing "Empty line above II" + (let [line "* Hello" + lines ["Some text goes here" line] + index 1] + (is (true? (corrector/empty-line-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/empty-line-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/empty-line-above? lines line index))))) + + (testing "No empty line above III" + (let [line "* Hello" + lines ["Some text here" "* Asd" line] + index 2] + (is (false? (corrector/empty-line-above? lines line index))))) + + (testing "Empty line below" + (let [line "1. Hello" + lines [line "Some text goes here"] + index 0] + (is (true? (corrector/empty-line-below? lines line index))))) + + (testing "Empty line below II" + (let [line "* Hello" + lines [line "Some text goes here"] + index 0] + (is (true? (corrector/empty-line-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/empty-line-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/empty-line-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/empty-line-below? lines line index)))))) |
