ghc-mod/test/BrowseSpec.hs

33 lines
1.2 KiB
Haskell
Raw Normal View History

2013-02-12 05:18:19 +00:00
module BrowseSpec where
import Control.Applicative
2013-05-20 02:29:44 +00:00
import Language.Haskell.GhcMod
import Test.Hspec
2013-02-12 05:18:19 +00:00
2014-05-10 13:10:34 +00:00
import TestUtils
import Dir
2013-02-12 05:18:19 +00:00
spec :: Spec
spec = do
describe "browse Data.Map" $ do
it "contains at least `differenceWithKey'" $ do
2014-05-10 13:10:34 +00:00
syms <- runD $ lines <$> browse "Data.Map"
syms `shouldContain` ["differenceWithKey"]
2013-03-01 00:46:17 +00:00
describe "browse -d Data.Either" $ do
it "contains functions (e.g. `either') including their type signature" $ do
2014-05-10 13:10:34 +00:00
syms <- run defaultOptions { detailed = True }
$ lines <$> browse "Data.Either"
syms `shouldContain` ["either :: (a -> c) -> (b -> c) -> Either a b -> c"]
it "contains type constructors (e.g. `Left') including their type signature" $ do
2014-05-10 13:10:34 +00:00
syms <- run defaultOptions { detailed = True}
$ lines <$> browse "Data.Either"
syms `shouldContain` ["Left :: a -> Either a b"]
describe "`browse' in a project directory" $ do
it "lists symbols defined in a a local module (e.g. `Baz.baz)" $ do
withDirectory_ "test/data" $ do
2015-02-07 15:41:15 +00:00
syms <- runD $ lines <$> browse "Baz"
syms `shouldContain` ["baz"]