~jaro/balkon

ref: 633d18066bdebdd14f5ae6116741dcf7963327ce balkon/test/Spec.hs -rw-r--r-- 350 bytes
633d1806Jaro Separate tests by module. 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Test.Hspec

import qualified Data.Text.ParagraphLayoutSpec
import qualified Data.Text.ParagraphLayout.RunSpec

main :: IO ()
main = hspec spec

spec :: Spec
spec = do
    describe "Data.Text.ParagraphLayout"
        Data.Text.ParagraphLayoutSpec.spec
    describe "Data.Text.ParagraphLayout.Run"
        Data.Text.ParagraphLayout.RunSpec.spec