diff options
| author | Eugen Wissner <belka@caraus.de> | 2019-07-10 05:57:35 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2019-07-10 05:57:35 +0200 |
| commit | eb40810f25a2ab29e24c64f1e3c82b3b590460c8 (patch) | |
| tree | 7baaf32a12cf69f864f69718e20357534a71bf5f /graphql.cabal | |
| parent | 61879fb12437302d6b14e0e0297e3a8742d91f8b (diff) | |
| download | graphql-eb40810f25a2ab29e24c64f1e3c82b3b590460c8.tar.gz | |
Replace tasty and HUnit with Hspec
Diffstat (limited to 'graphql.cabal')
| -rw-r--r-- | graphql.cabal | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/graphql.cabal b/graphql.cabal index 0f9c866..606a834 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -4,7 +4,7 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: 20a76d38355648944315f3aa937e5cd72837bbd1b93037f53e2849906de3f2c0 +-- hash: 2ad18ce352b6b5324c5e8c4fa3e7c1dc39022b209696d162367d13300c4046fd name: graphql version: 0.4.0.0 @@ -65,11 +65,12 @@ library test-suite tasty type: exitcode-stdio-1.0 - main-is: tasty.hs + main-is: Spec.hs other-modules: - Language.GraphQL.LexerTest + Language.GraphQL.LexerSpec + Test.KitchenSinkSpec Test.StarWars.Data - Test.StarWars.QueryTests + Test.StarWars.QuerySpec Test.StarWars.Schema Paths_graphql hs-source-dirs: @@ -79,10 +80,10 @@ test-suite tasty aeson , base >=4.7 && <5 , graphql + , hspec + , hspec-expectations , megaparsec , raw-strings-qq - , tasty - , tasty-hunit , text , transformers default-language: Haskell2010 |
