summaryrefslogtreecommitdiff
path: root/test/test-pandoc.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-02-04 21:07:03 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-02-04 21:07:03 +0100
commit49c7cf40fecf64f1da1ff9e2e341117cb299afa8 (patch)
tree54f81e2cea438e5d2e3e47341da221ea74a081b4 /test/test-pandoc.hs
parente0abe18bb92b4d57cf0364486010de9acd8b8d71 (diff)
Added new test framework Tests.Command.
Any files added under test/command will be treated as shell tests (see smart.md for an example). This makes it very easy to add regression tests etc.
Diffstat (limited to 'test/test-pandoc.hs')
-rw-r--r--test/test-pandoc.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-pandoc.hs b/test/test-pandoc.hs
index cda329706..2624e9a53 100644
--- a/test/test-pandoc.hs
+++ b/test/test-pandoc.hs
@@ -31,8 +31,8 @@ import Text.Pandoc.Shared (inDirectory)
import System.Environment (getArgs)
tests :: [Test]
-tests = [ testGroup "Old" Tests.Old.tests
- , testGroup "Command" Tests.Command.tests
+tests = [ Tests.Command.tests
+ , testGroup "Old" Tests.Old.tests
, testGroup "Shared" Tests.Shared.tests
, testGroup "Writers"
[ testGroup "Native" Tests.Writers.Native.tests