aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-22 15:54:24 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-22 15:54:24 -0800
commit2bea4e3729e72afd63ba5a5b10424a23ba6564e5 (patch)
tree0a7faaf3b40560cd10409385fec465e20a5b6cc0 /tests
parent87aaa7e719926332f69f06a4d284fc70c41fa1a8 (diff)
downloadpandoc-2bea4e3729e72afd63ba5a5b10424a23ba6564e5.tar.gz
Reorganized tests.
The native writer test needs to run before others that depend on it.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-pandoc.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-pandoc.hs b/tests/test-pandoc.hs
index e8f792e2d..157f755c4 100644
--- a/tests/test-pandoc.hs
+++ b/tests/test-pandoc.hs
@@ -11,13 +11,13 @@ import qualified Tests.Writers.Native
tests :: [Test]
tests = [ testGroup "Old" Tests.Old.tests
+ , testGroup "Writers"
+ [ testGroup "Native" Tests.Writers.Native.tests
+ , testGroup "ConTeXt" Tests.Writers.ConTeXt.tests
+ ]
, testGroup "Readers"
[ testGroup "LaTeX" Tests.Readers.LaTeX.tests
]
- , testGroup "Writers"
- [ testGroup "ConTeXt" Tests.Writers.ConTeXt.tests
- , testGroup "Native" Tests.Writers.Native.tests
- ]
]
main :: IO ()