diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-01-13 10:59:44 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-01-13 10:59:44 -0800 |
commit | 4ccd30fe3ec899389e8159cc51e830c9edd9f875 (patch) | |
tree | e90110f5065afad4f832ee9f4fe1079d33b21aa8 /tests | |
parent | 99c361d2b433a90525e3dea002cd8700e6596a09 (diff) | |
download | pandoc-4ccd30fe3ec899389e8159cc51e830c9edd9f875.tar.gz |
Moved Tests.Shared -> Tests.Helpers.
Tests.Shared would be the natural place to put tests for functions
in Text.Pandoc.Shared.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Tests/Helpers.hs (renamed from tests/Tests/Shared.hs) | 2 | ||||
-rw-r--r-- | tests/Tests/Readers/LaTeX.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/Tests/Shared.hs b/tests/Tests/Helpers.hs index f5b13986d..272fa16bc 100644 --- a/tests/Tests/Shared.hs +++ b/tests/Tests/Helpers.hs @@ -1,4 +1,4 @@ -module Tests.Shared where +module Tests.Helpers where import Text.Pandoc diff --git a/tests/Tests/Readers/LaTeX.hs b/tests/Tests/Readers/LaTeX.hs index 58a27f09b..093ff07e5 100644 --- a/tests/Tests/Readers/LaTeX.hs +++ b/tests/Tests/Readers/LaTeX.hs @@ -3,7 +3,7 @@ module Tests.Readers.LaTeX (tests) where import Text.Pandoc.Definition import Test.Framework -import Tests.Shared +import Tests.Helpers tests :: [Test] tests = [ testGroup "basic" [ latexTest "simplest" "word" |