packages feed

mangrove-0.1.0.0: test/Test/Mangrove/Unit/Tokenize.hs

{-|
Description:    

Copyright:      (c) 2020 Samuel May
License:        MPL-2.0
Maintainer:     ag.eitilt@gmail.com

Stability:      experimental
Portability:    portable
-}
module Test.Mangrove.Unit.Tokenize
    ( tests
    ) where


import qualified Test.HUnit as U

import Test.HUnit ( (~:) )

import qualified Test.Mangrove.Unit.Tokenize.Tag as Tag


tests :: IO U.Test
tests = return $ "tokenization" ~: U.TestList
    [ Tag.tests
    ]