goldmark/extension
Abhinav Gupta 8c55e6fa9c Move test utilities to testutil/
This moves the following functions meant for use from tests into a
testutil subpackage.

    func DoTestCase(m Markdown, testCase MarkdownTestCase, t TestingT)
    func DoTestCaseFile(m Markdown, filename string, t TestingT)
    func DoTestCases(m goldmark.Markdown, cases []MarkdownTestCase, t TestingT)

This will help keep the top-level goldmark package clean and limited to
core functionality.

(Note that tests in the top-level goldmark package that make use of
these functions must now use the package name `goldmark_test` so that
they're considered separate from the main `goldmark` package, otherwise
you'll see an import cycle: goldmark imports testutil imports goldmark.)
2019-08-25 03:18:18 -07:00
..
_test Fix bugs in footnotes 2019-07-24 20:55:37 +09:00
ast Add String node 2019-05-30 16:07:04 +09:00
definition_list.go Fix bug found in fuzzing 2019-07-24 20:16:54 +09:00
definition_list_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00
footnote.go Fix bugs in footnotes 2019-07-24 20:55:37 +09:00
footnote_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00
gfm.go Add extension tests, Fix bugs in extensions 2019-05-16 19:46:36 +09:00
linkify.go Add extension tests, Fix bugs in extensions 2019-05-16 19:46:36 +09:00
linkify_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00
strikethrough.go Refactoring 2019-05-04 19:27:13 +09:00
strikethrough_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00
table.go ♻️ Remove redundant check 2019-08-10 00:39:46 +08:00
table_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00
tasklist.go Refactoring 2019-05-04 19:27:13 +09:00
tasklist_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00
typographer.go Add String node 2019-05-30 16:07:04 +09:00
typographer_test.go Move test utilities to testutil/ 2019-08-25 03:18:18 -07:00