summaryrefslogtreecommitdiff
path: root/test/clarktown/parsers/code_block_test.clj
blob: 1bd51b2e5795aa72f569325cb7e190f2f4b1b3b6 (plain)
1
2
3
4
5
6
7
8
9
(ns clarktown.parsers.code-block-test
  (:require [clojure.test :refer [deftest testing is]]
            [clarktown.parsers.code-block :as code-block]))


(deftest code-block-test
  (testing "Code block"
    (is (= (slurp "./resources/test/parsers/code_block_result.html")
           (code-block/render (slurp "./resources/test/parsers/code_block.md") nil)))))