module Main where import Local.BulkParser import Local.Money import Local.Parser import Test.Framework (Test, defaultMain) tests :: [Test] tests = [unitMoney, unitParser, bulkParser] main :: IO () main = defaultMain tests