We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca81c73 commit 5b85ea6Copy full SHA for 5b85ea6
test/pl/danieljanus/tagsoup_test.clj
@@ -0,0 +1,8 @@
1
+(ns pl.danieljanus.tagsoup-test
2
+ (:use
3
+ pl.danieljanus.tagsoup
4
+ clojure.test))
5
+
6
+(deftest parse-string-test
7
+ (is (= [:html {} [:body {} [:p {} "foo"]]]
8
+ (parse-string "<p>foo</p>"))))
0 commit comments