summaryrefslogtreecommitdiff
path: root/tests/test-pandoc.hs
Commit message (Collapse)AuthorAge
* Set locale encoding in test suite.John MacFarlane2013-01-18
| | | | | This prevents a "commit buffer (invalid argument)" error on Windows.
* Integrated test suite with cabal.John MacFarlane2012-07-26
| | | | | | | | To run tests, configure with --enable-tests, then 'cabal test'. You can specify particular tests using --test-options='-t markdown'. No output is shown unless tests fail. In the future, we can move to the detailed-1.0 interface.
* Moved tests to tests/, modified cabal file so lib isn't recompiled.John MacFarlane2012-07-26
|
* Moved tests to src.John MacFarlane2011-01-29
|
* Added Tests.Shared with normalize round-trip tests.John MacFarlane2011-01-29
|
* Added Tests.Readers.Markdown.John MacFarlane2011-01-26
|
* Added RST reader tests.John MacFarlane2011-01-26
|
* Reorganized tests.John MacFarlane2011-01-22
| | | | The native writer test needs to run before others that depend on it.
* Added native writer tests.John MacFarlane2011-01-22
|
* Added Tests.Writers.ConTeXt and helpers for writer tests.John MacFarlane2011-01-21
|
* Keep Tests.Arbitrary but remove quickcheck tests for now.John MacFarlane2011-01-14
| | | | | Remove Tests.Shared. Remove dependency on QuickCheck.
* Added quickcheck tests for normalize in Shared.John MacFarlane2011-01-14
|
* Reordered test files.Nathan Gass2011-01-12
|
* Added some basic testing infrastructure and some latex reader tests.Nathan Gass2011-01-12
|
* Started implementing splitted test suite.Nathan Gass2011-01-12
| | | | | | Moved old tests into Old.hs and added new simple test-pandoc.hs for loading and grouping together tests from different files. Later commits will add more testfiles to the suite with more modular tests.
* test-pandoc: Improved header for diff output.John MacFarlane2011-01-12
|
* test-pandoc: More informative diff output on test failure.John MacFarlane2011-01-12
| | | | | Now the test suite tells you the exact command that was run, and the file containing the expected output.
* test-pandoc: Relocated --columns=80 to just where it's needed.John MacFarlane2011-01-12
| | | | | We only need it for certain table tests, because of the relative alignments.
* test-pandoc: Fixed + and - in diff output, which were reversed.John MacFarlane2011-01-12
|
* test-pandoc: More diff-like diffs in case of test failure.John MacFarlane2011-01-12
|
* Improvements to test suite.John MacFarlane2011-01-12
| | | | | | | | | | | | | | | | + You can now specify glob patterns after 'cabal test'; e.g. 'cabal test latex' will only run the latex tests. + Instead of detecting highlighting support in Setup.hs, we now detect it in test-pandoc, by looking to see if 'languages' is null. + We now verify the lhs readers against the lhs-test.native, normalizing with 'normalize'. This makes more sense than verifying against HTML, which also brings in the HTML writer. + Added lhsn-test.nohl.{html,html+lhs}, so we can do the lhs tests whether or not highlighting has been installed.
* Removed outdated comments.Nathan Gass2011-01-11
|
* Moved test-pandoc.hs to tests directory.Nathan Gass2011-01-11