summaryrefslogtreecommitdiff
path: root/test-src/Test.hs
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2016-04-26 08:56:21 -0400
committerAndrew Cady <d@jerkface.net>2016-04-26 08:57:11 -0400
commitf5fb4f27b4e9cecdc3afc2facc8e39717ea20524 (patch)
treec0ba039c0fb8eadfb4c22d9b370df997ff81aa19 /test-src/Test.hs
Initial commitHEADmaster
This is just dataenc-0.14.0.7 from hackage with the upper bound on 'base' changed in dataenc.cabal. I couldn't find a git repo to fork, so I used 'stack unpack'
Diffstat (limited to 'test-src/Test.hs')
-rw-r--r--test-src/Test.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/test-src/Test.hs b/test-src/Test.hs
new file mode 100644
index 0000000..2155bdf
--- /dev/null
+++ b/test-src/Test.hs
@@ -0,0 +1,16 @@
1{-
2 - Copyright : (c) 2009 Magnus Therning
3 - License : BSD3
4 -}
5
6module Main
7 where
8
9import Test.Framework
10
11import qualified DataencQC as DQC
12import qualified DataencUT as DUT
13
14tests = [ DQC.allTests , DUT.allTests ]
15
16main = defaultMain tests