blob: 8fe83e49feddf6247a391fb1821fbabc00c906ed (
plain)
1
2
3
4
5
6
7
8
9
|
(ns clarktown.matchers.empty-block-test
(:require
[clojure.test :refer [deftest testing is]]
[clarktown.matchers.empty-block :as empty-block]))
(deftest empty-block-matcher-test
(testing "Checking an empty block"
(is (true? (empty-block/match? "")))
(is (true? (empty-block/match? " ")))))
|