File tree Expand file tree Collapse file tree 7 files changed +9
-72
lines changed Expand file tree Collapse file tree 7 files changed +9
-72
lines changed Original file line number Diff line number Diff line change 11-- See http://cabal.readthedocs.io/en/latest/nix-local-build-overview.html
22packages : .
33packages : tests
4- packages : th-tests
54packages : benchmarks
65tests : True
Original file line number Diff line number Diff line change @@ -6,8 +6,13 @@ module Main
66
77import Test.Tasty (defaultMain , testGroup )
88
9+ import qualified Tests.Lift as Lift
910import qualified Tests.Properties as Properties
1011import qualified Tests.Regressions as Regressions
1112
1213main :: IO ()
13- main = defaultMain $ testGroup " All" [Properties. tests, Regressions. tests]
14+ main = defaultMain $ testGroup " All"
15+ [ Lift. tests
16+ , Properties. tests
17+ , Regressions. tests
18+ ]
Original file line number Diff line number Diff line change 11{-# LANGUAGE OverloadedStrings #-}
22{-# LANGUAGE TemplateHaskell #-}
3- module Lift
3+ module Tests. Lift
44 ( tests
55 )
66 where
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ test-suite tests
6969 hs-source-dirs : .
7070 main-is : Tests.hs
7171 other-modules :
72+ Tests.Lift
7273 Tests.Properties
7374 Tests.Properties.Mul
7475 Tests.QuickCheckUtils
@@ -87,6 +88,7 @@ test-suite tests
8788 tasty,
8889 tasty-hunit,
8990 tasty-quickcheck,
91+ template-haskell,
9092 text
9193
9294 default-language : Haskell2010
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments