Skip to content

Commit 14f2143

Browse files
committed
Merge th-tests into tests
1 parent 9514a70 commit 14f2143

File tree

7 files changed

+9
-72
lines changed

7 files changed

+9
-72
lines changed

cabal.project

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
-- See http://cabal.readthedocs.io/en/latest/nix-local-build-overview.html
22
packages: .
33
packages: tests
4-
packages: th-tests
54
packages: benchmarks
65
tests: True

tests/Tests.hs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ module Main
66

77
import Test.Tasty (defaultMain, testGroup)
88

9+
import qualified Tests.Lift as Lift
910
import qualified Tests.Properties as Properties
1011
import qualified Tests.Regressions as Regressions
1112

1213
main :: 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+
]

th-tests/tests/Lift.hs renamed to tests/Tests/Lift.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{-# LANGUAGE OverloadedStrings #-}
22
{-# LANGUAGE TemplateHaskell #-}
3-
module Lift
3+
module Tests.Lift
44
( tests
55
)
66
where

tests/text-tests.cabal

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

th-tests/LICENSE

Lines changed: 0 additions & 26 deletions
This file was deleted.

th-tests/tests/th-tests.hs

Lines changed: 0 additions & 12 deletions
This file was deleted.

th-tests/th-tests.cabal

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)