X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=test%2FTest.hs;h=2372cbefff91ebf9c2b6004a301d6cab0a1e5f63;hb=8cd3d41fef5b055ee1c79e6d83858d70c599367b;hp=f73c18606bee24d24d86c70347d3bfc81c61c5dd;hpb=08610aa7c21ec8166db8fdec20a785f543f155b3;p=lsp-test.git diff --git a/test/Test.hs b/test/Test.hs index f73c186..2372cbe 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -259,6 +259,13 @@ main = hspec $ do defs <- getDefinitions doc pos liftIO $ defs `shouldBe` [Location (doc ^. uri) (mkRange 28 0 28 7)] + describe "getTypeDefinitions" $ + it "works" $ runSession "hie" fullCaps "test/data/renamePass" $ do + doc <- openDoc "Desktop/simple.hs" "haskell" + let pos = Position 20 23 -- Quit value + defs <- getTypeDefinitions doc pos + liftIO $ defs `shouldBe` [Location (doc ^. uri) (mkRange 10 0 14 19)] -- Type definition + describe "waitForDiagnosticsSource" $ it "works" $ runSession "hie" fullCaps "test/data" $ do openDoc "Error.hs" "haskell"