Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Feb 1, 2021
1 parent 2a29066 commit ba41d49
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
9 changes: 7 additions & 2 deletions hspec-expectations.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ library
Test.Hspec.Expectations
Test.Hspec.Expectations.Contrib
other-modules:
Test.Hspec.Expectations.Floating
Test.Hspec.Expectations.Matcher
Paths_hspec_expectations
default-language: Haskell2010
Expand All @@ -46,15 +47,19 @@ test-suite spec
src
ghc-options: -Wall
build-depends:
HUnit >=1.5.0.0
HUnit
, QuickCheck
, base ==4.*
, call-stack
, nanospec
, floating-bits
, hspec-meta
other-modules:
Test.Hspec.Expectations.FloatingSpec
Test.Hspec.Expectations.MatcherSpec
Test.Hspec.ExpectationsSpec
Test.Hspec.Expectations
Test.Hspec.Expectations.Contrib
Test.Hspec.Expectations.Floating
Test.Hspec.Expectations.Matcher
Paths_hspec_expectations
default-language: Haskell2010
6 changes: 4 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,7 @@ tests:
- test
- src
dependencies:
- nanospec
- HUnit >= 1.5.0.0
- HUnit
- hspec-meta
- QuickCheck
- floating-bits
2 changes: 1 addition & 1 deletion test/Spec.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Main where

import Test.Hspec
import Test.Hspec.Meta

import qualified Test.Hspec.ExpectationsSpec
import qualified Test.Hspec.Expectations.MatcherSpec
Expand Down
2 changes: 1 addition & 1 deletion test/Test/Hspec/Expectations/FloatingSpec.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# LANGUAGE ScopedTypeVariables #-}
module Test.Hspec.Expectations.FloatingSpec (spec) where

import Test.Hspec
import Test.Hspec.Meta
import Test.QuickCheck

import Control.Exception
Expand Down
2 changes: 1 addition & 1 deletion test/Test/Hspec/Expectations/MatcherSpec.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Test.Hspec.Expectations.MatcherSpec (main, spec) where

import Test.Hspec
import Test.Hspec.Meta

import Test.Hspec.Expectations.Matcher

Expand Down
2 changes: 1 addition & 1 deletion test/Test/Hspec/ExpectationsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Test.Hspec.ExpectationsSpec (spec) where

import Control.Exception
import Test.HUnit.Lang
import Test.Hspec (Spec, describe, it)
import Test.Hspec.Meta (Spec, describe, it)

import Test.Hspec.Expectations hiding (HasCallStack)
import Data.CallStack
Expand Down

0 comments on commit ba41d49

Please sign in to comment.