cabal-version: 2.4 name: lsp-test version: 0.14.0.3 synopsis: Functional test framework for LSP servers. description: A test framework for writing tests against . @Language.LSP.Test@ launches your server as a subprocess and allows you to simulate a session down to the wire. To see examples of it in action, check out , and . homepage: https://github.com/haskell/lsp/blob/master/lsp-test/README.md license: BSD-3-Clause license-file: LICENSE author: Luke Lau maintainer: luke_lau@icloud.com bug-reports: https://github.com/haskell/lsp/issues copyright: 2021 Luke Lau category: Testing build-type: Simple extra-source-files: README.md , ChangeLog.md , test/data/**/*.hs tested-with: GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.3, GHC == 8.10.1, GHC == 8.10.2 source-repository head type: git location: https://github.com/haskell/lsp library hs-source-dirs: src exposed-modules: Language.LSP.Test reexported-modules: lsp-types:Language.LSP.Types , lsp-types:Language.LSP.Types.Capabilities , parser-combinators:Control.Applicative.Combinators default-language: Haskell2010 build-depends: base >= 4.10 && < 5 , lsp-types == 1.5.* , lsp == 1.5.* , aeson , time , aeson-pretty , ansi-terminal , async >= 2.0 , bytestring , co-log-core , conduit , conduit-parse == 0.2.* , containers >= 0.5.9 , data-default , Diff >= 0.3 , directory , filepath , Glob >= 0.9 && < 0.11 , lens , mtl < 2.4 , parser-combinators >= 1.2 , process >= 1.6 , text , transformers , unordered-containers , some if os(windows) build-depends: Win32 else build-depends: unix other-modules: Language.LSP.Test.Compat Language.LSP.Test.Decoding Language.LSP.Test.Exceptions Language.LSP.Test.Files Language.LSP.Test.Parsing Language.LSP.Test.Server Language.LSP.Test.Session ghc-options: -W test-suite tests type: exitcode-stdio-1.0 main-is: Test.hs other-modules: DummyServer hs-source-dirs: test ghc-options: -W build-depends: base >= 4.10 && < 5 , hspec , lens , lsp == 1.5.* , lsp-test , data-default , aeson , unordered-containers , text , directory , filepath , unliftio , process , mtl < 2.4 , aeson default-language: Haskell2010 test-suite func-test main-is: FuncTest.hs hs-source-dirs: func-test type: exitcode-stdio-1.0 build-depends: base , lsp-test , lsp , process , co-log-core , lens , unliftio , hspec default-language: Haskell2010 test-suite example main-is: Test.hs hs-source-dirs: example type: exitcode-stdio-1.0 default-language: Haskell2010 build-depends: base , lsp-test , parser-combinators build-tool-depends: lsp:lsp-demo-reactor-server benchmark simple-bench main-is: SimpleBench.hs hs-source-dirs: bench type: exitcode-stdio-1.0 build-depends: base , lsp-test , lsp , process , extra default-language: Haskell2010 ghc-options: -Wall -O2 -eventlog -rtsopts