From 54cf0c7d7d46b1cd90fa8f0ad0daf79ac9684978 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 17 Jun 2015 12:35:40 -0700 Subject: Added case for #59 to pathological_test.py. --- test/pathological_tests.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/pathological_tests.py b/test/pathological_tests.py index fe5d2e4..f3aa5a2 100644 --- a/test/pathological_tests.py +++ b/test/pathological_tests.py @@ -41,6 +41,9 @@ pathological = { "link openers and emph closers": (("[ a_" * 50000), re.compile("(\[ a_){50000}")), + "hard link/emph case": + ("**x [a*b**c*](d)", + re.compile("\\*\\*x abc")), "nested brackets": (("[" * 50000) + "a" + ("]" * 50000), re.compile("\[{50000}a\]{50000}")), -- cgit v1.2.3