summaryrefslogtreecommitdiff
path: root/tests/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Main.hs')
-rw-r--r--tests/Main.hs10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/Main.hs b/tests/Main.hs
index e3a673d..cdd46dc 100644
--- a/tests/Main.hs
+++ b/tests/Main.hs
@@ -4,9 +4,17 @@ import Test.Framework (defaultMain, testGroup)
import Test.Framework.Providers.HUnit
import Test.Framework.Providers.QuickCheck2
+import CompressCSS
+import Context
+import File
+import Regex
import Template
import Util
-main = defaultMain [ templateGroup
+main = defaultMain [ compressCSSGroup
+ , contextGroup
+ , fileGroup
+ , regexGroup
+ , templateGroup
, utilGroup
]