Skip to content

Commit

Permalink
Remove QuickCheck reference, not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
adomokos committed Jan 8, 2019
1 parent 47749e0 commit 8f7dcbc
Show file tree
Hide file tree
Showing 61 changed files with 0 additions and 61 deletions.
1 change: 0 additions & 1 deletion test/Ex01_ListsExtractingSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex01_ListsExtractingSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex02_ListsComprehensionsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex02_ListsComprehensionsSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex03_ListsRangesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex03_ListsRangesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex04_ListsTuplesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex04_ListsTuplesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex05_TypesIntroSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex05_TypesIntroSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex06_FlowPatternMatchingSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex06_FlowPatternMatchingSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex07_FlowGuardsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex07_FlowGuardsSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex08_FlowWhereSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex08_FlowWhereSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex09_FlowLetItBeSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex09_FlowLetItBeSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex10_FlowCaseExpressionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex10_FlowCaseExpressionSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex11_FlowRecursionsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex11_FlowRecursionsSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex12_HofsIntroSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex12_HofsIntroSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex13_HofsLambdasSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex13_HofsLambdasSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex14_HofsFoldsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex14_HofsFoldsSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex15_HofsScansSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex15_HofsScansSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex16_HofsFunctionApplicationSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex16_HofsFunctionApplicationSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex17_HofsFunctionCompositionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex17_HofsFunctionCompositionSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex18_ModulesIntroSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module Ex18_ModulesIntroSpec
import Data.List
import qualified Data.Set as M {- use M.filter now -}
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex19_ModulesListFunctionsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module Ex19_ModulesListFunctionsSpec
import Data.Function
import qualified Data.List as L
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex20_ModulesCharFunctionsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import qualified Data.Char as C
import Data.Function
import qualified Data.List as L
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex21_ModulesMapFunctionalitySpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex21_ModulesMapFunctionalitySpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex22_ModulesMapFunctionsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module Ex22_ModulesMapFunctionsSpec
import Data.Char
import qualified Data.Map as Map
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex23_ModulesSetFunctionsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex23_ModulesSetFunctionsSpec

import qualified Data.Set as Set
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex24_TypesMakingTypesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex24_TypesMakingTypesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex25_TypesRecordSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex25_TypesRecordSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex26_TypesTypeParametersSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex26_TypesTypeParametersSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex27_TypesDerivedInstancesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex27_TypesDerivedInstancesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex28_TypesMoreDerivedInstancesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex28_TypesMoreDerivedInstancesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex29_TypesAliasingSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex29_TypesAliasingSpec

import qualified Data.Map as Map
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex30_TypesRecursiveDataStructuresSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex30_TypesRecursiveDataStructuresSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex31_TypesMoreTypeClassesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex31_TypesMoreTypeClassesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex32_TypesYesNoTypeClassSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex32_TypesYesNoTypeClassSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex34_FaFunctorTypeClassSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex34_FaFunctorTypeClassSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex35_ExercisesLondonToHeathrowSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex35_ExercisesLondonToHeathrowSpec

import Control.Exception (evaluate)
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex36_ExercisesRPNCalculatorSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex36_ExercisesRPNCalculatorSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex38_FaFmapFunctionCompositionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ module Ex38_FaFmapFunctionCompositionSpec
fmap = (.)
-}
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex39_FaFmapReplicateSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex39_FaFmapReplicateSpec

import Data.Either
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex40_FaFunctorLawsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex40_FaFunctorLawsSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex41_FaApplicativesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex41_FaApplicativesSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex42_FaMoreApplicativesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex42_FaMoreApplicativesSpec

import Control.Applicative
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex43_FaNewTypeSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex43_FaNewTypeSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex44_FaMonoidsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex44_FaMonoidsSpec

import Data.Monoid
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex45_FaOrderingMonoidsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex45_FaOrderingMonoidsSpec

import Data.Monoid
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex46_FaMaybeMonoidsSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Ex46_FaMaybeMonoidsSpec

import Data.Monoid
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex48_FaFoldableSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module Ex48_FaFoldableSpec
import qualified Data.Foldable as F
import Data.Monoid
import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex49_MonadsCalculateBirthYearSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex49_MonadsCalculateBirthYearSpec
) where

import Test.Hspec
import Test.QuickCheck
import Text.Read (readMaybe)

{-
Expand Down
1 change: 0 additions & 1 deletion test/Ex50_MonadsCalculateAgeFromDatesSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module Ex50_MonadsCalculateAgeFromDatesSpec
-- From: http://www.snoyman.com/blog/2017/01/functors-applicatives-and-monads
-- 6. Using the short-hand <$>
import Test.Hspec
import Test.QuickCheck
import Text.Read (readMaybe)

main :: IO ()
Expand Down
1 change: 0 additions & 1 deletion test/Ex51_MonadsIntroSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex51_MonadsIntroSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex52_MonadsBirdLandingSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex52_MonadsBirdLandingSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
1 change: 0 additions & 1 deletion test/Ex53_MonadsDoNotationSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module Ex53_MonadsDoNotationSpec
) where

import Test.Hspec
import Test.QuickCheck

main :: IO ()
main = hspec spec
Expand Down
Loading

0 comments on commit 8f7dcbc

Please sign in to comment.