Haskell Platform for Max OSX の新規インストールで、インタープリターimport Test.HUnit
を使用して実行すると、次のコードが失敗します。runghc
{--
- Save this file as Main.hs and run with % runghc Main.hs
-}
module Main where
import Test.HUnit
derp = test [ "a silly test" ~: 'a' ~=? 'a' ]
tests = TestList [ derp ]
main::IO()
main = (runTestTT tests) >>= (\x -> putStrLn $ show x)
ただし、ghci を使用する場合は、単純なimport Test.HUnit
作業を行うだけで問題なく動作します。
ghc
コマンドラインとghci
REPLの間のこの不一致を解決するにはどうすればよいですか?