* Add tests for markdown-clj and tools.namespace
See comment for why only one markdown test could be run.
Closes #1069 and #1064
* Convert 10 test libs using add-libtest
Also improved add-libtest to only require maven artifact
and rely on clojars for getting git-url most of the time
* Convert 8 more test libs using add-libtest
Also updated table and added comment for newline test
* Fix doric test
* Disable tools.namespace test that fails on windows
* Added dozen manual test libs and converted 2 test libs
add-libtest.clj supports manually-added and test-directories options
* Converts last tests to test namespaces and write libraries.csv
* Add a number of library tests from projects.md
Also add more docs around adding test libs and tweak add script
* Use :sha for gitlib and older clojure cli
* Revert "Use :sha for gitlib and older clojure cli"
This reverts commit c663ab8368.
* Fix and disable failing tests
Disabled tests that fail consistently and fixed windows one
29 lines
945 B
Clojure
29 lines
945 B
Clojure
(ns lambdaisland.regal.parse-test
|
|
(:require [clojure.test :refer [deftest testing is are]]
|
|
[lambdaisland.regal :as regal]
|
|
[lambdaisland.regal.parse :as parse]))
|
|
|
|
(deftest parse-whitespace-test
|
|
(is (= [:class " " :tab :newline :vertical-tab :form-feed :return]
|
|
(regal/with-flavor :java
|
|
(parse/parse-pattern "\\s"))))
|
|
|
|
(is (= :whitespace
|
|
(regal/with-flavor :ecma
|
|
(parse/parse-pattern "\\s"))))
|
|
|
|
(is (= [:not " " :tab :newline :vertical-tab :form-feed :return]
|
|
(regal/with-flavor :java
|
|
(parse/parse-pattern "\\S"))))
|
|
|
|
(is (= :non-whitespace
|
|
(regal/with-flavor :ecma
|
|
(parse/parse-pattern "\\S")))))
|
|
|
|
(deftest ^{:kaocha/pending
|
|
"Needs a special case in the regex generation code"}
|
|
whitespace-round-trip
|
|
(is (= "\\s"
|
|
(regal/with-flavor :java
|
|
(regal/pattern
|
|
(parse/parse-pattern "\\s"))))))
|