associative-0.0.1: test/Main.hs
{-# OPTIONS_GHC -Wall -Werror #-}
module Main where
import System.Exit (exitWith)
import System.Process (rawSystem)
main :: IO ()
main =
exitWith
=<< rawSystem
"cabal"
[ "repl",
"--with-compiler=doctest",
"--repl-options=-w",
"--repl-options=-Wdefault",
"lib:associative"
]