scmdoc

Automatically generate documentation from comments in R7RS Scheme code

git clone https://git.8pit.net/scmdoc.git

 1import Test.Tasty
 2
 3import Formatter
 4import Library
 5import Parser
 6import Record
 7
 8main :: IO ()
 9main = defaultMain tests
10
11tests :: TestTree
12tests =
13    testGroup
14        "Tests"
15        [ schemeParser
16        , libraryParser
17        , formatter
18        , record
19        ]