ghc-mod/test/ListSpec.hs
Daniel Gröber 4aa75818d8 Fix tests
2015-08-31 08:32:31 +02:00

15 lines
321 B
Haskell

module ListSpec where
import Control.Applicative
import Language.Haskell.GhcMod
import Test.Hspec
import TestUtils
import Prelude
spec :: Spec
spec = do
describe "modules" $ do
it "contains at least `Data.Map'" $ do
mdls <- runD $ lines <$> modules
mdls `shouldContain` ["Data.Map"]