Replace tasty and HUnit with Hspec

This commit is contained in:
2019-07-10 05:57:35 +02:00
parent 61879fb124
commit eb40810f25
8 changed files with 293 additions and 303 deletions

View File

@ -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