File: Main.hs

package info (click to toggle)
haskell-unicode-data 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,004 kB
  • sloc: haskell: 26,075; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-# LANGUAGE CPP #-}

module Main where

import Test.Hspec
import qualified Unicode.CharSpec
#ifdef HAS_ICU
import qualified ICU.CharSpec as ICU
#endif

main :: IO ()
main = hspec spec

spec :: Spec
spec = do
    describe "Unicode.Char" Unicode.CharSpec.spec
#ifdef HAS_ICU
    describe "ICU.Char" ICU.spec
#endif