From 7da1fada8dd795543e12c6aa0371cc1149a42be6 Mon Sep 17 00:00:00 2001 From: Asko Nomm Date: Thu, 7 Apr 2022 11:26:12 +0200 Subject: Add core overall test and fix code block ending being broken. --- test/clarktown/core_test.clj | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'test/clarktown/core_test.clj') diff --git a/test/clarktown/core_test.clj b/test/clarktown/core_test.clj index da252c7..8a2ee58 100644 --- a/test/clarktown/core_test.clj +++ b/test/clarktown/core_test.clj @@ -1,4 +1,10 @@ (ns clarktown.core-test (:require - [clojure.test :refer :all] - [clarktown.core :refer :all])) \ No newline at end of file + [clojure.test :refer [deftest testing is]] + [clarktown.core :as core])) + + +(deftest overall-test + (testing "Overall" + (is (= (slurp "./resources/test/core_result.html") + (core/render (slurp "./resources/test/core.md")))))) \ No newline at end of file -- cgit v1.2.3