Update README.md
[lsp-test.git] / README.md
1 # haskell-lsp-test [![Build Status](https://travis-ci.com/Bubba/haskell-lsp-test.svg?branch=master)](https://travis-ci.com/Bubba/haskell-lsp-test)
2 This is the functional testing framework for [haskell-ide-engine](https://github.com/haskell/haskell-ide-engine), and potentially any other Language Server Protocol server.
3
4 ```haskell
5 runSession "session/root/dir" $ do
6   doc <- openDoc "foo.hs" "haskell"
7   
8   skipMany notification
9   
10   sendRequest (Proxy :: Proxy DocumentSymbolRequest)
11               TextDocumentDocumentSymbol
12               (DocumentSymbolParams doc)
13               
14   RspDocumentSymbols rspSymbols <- response
15   let (List symbols) = fromJust (rspSymbols ^. result)