megaparsec/test/Main.hs
Antoine Latter 35b78b130b Add test for #9.
Also move test for #2 to have a more regular structure for tests aimed at
specific bugs.
2014-09-24 19:22:35 -05:00

10 lines
117 B
Haskell

import Test.Framework
import Bugs ( bugs )
main :: IO ()
main = do
defaultMain
[ testGroup "Bugs" bugs
]