trying to fix Travis CI.

This commit is contained in:
Kazu Yamamoto 2014-08-20 12:35:36 +09:00
parent 25e1727971
commit 51710c38b0
1 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@
module GhcPkgSpec where
import Language.Haskell.GhcMod.GhcPkg
#if __GLASGOW_HASKELL__ <= 706
import Language.Haskell.GhcMod.Types
#endif
import System.Directory
import System.FilePath ((</>))
@ -11,7 +14,7 @@ spec :: Spec
spec = do
describe "getSandboxDb" $ do
-- ghc < 7.8
#if !MIN_VERSION_ghc(7,8,0)
#if __GLASGOW_HASKELL__ <= 706
it "does include a sandbox with ghc < 7.8" $ do
cwd <- getCurrentDirectory
getPackageDbStack "test/data/" `shouldReturn` [GlobalDb, PackageDb $ cwd </> "test/data/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d"]