aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_syntax/blocks/test_headers.py
Commit message (Collapse)AuthorAgeFilesLines
* Correct spelling mistakes.Edward Betts2018-01-131-1/+1
|
* Provide new testing framework.Waylan Limberg2018-01-081-0/+688
As a part of the Markdown lib, test tools can be used by third party extensions. Also keeps test dir clean as it only contains actual tests. More work in this vein to come as the need for Nose is removed. Tests are defined as Unittests rather than in text files allowing features to be more easily broken into units and run individually. Based completely on standard lib unittest with no external dependencies. Use `python -m unittest tests.test_syntax` to run. Pulled some tests from https://github.com/karlcow/markdown-testsuite. Many more test units to pull from that source. As we encounter the need to edit an existing textfile-based test, or add a new test, a new test should be created with this framework and the old test should be deleted. Also need to delete existing testfile-based tests which are covered in the new tests included here.