Skip to content

Commit

Permalink
More complex test for italics in list items
Browse files Browse the repository at this point in the history
  • Loading branch information
jrblevin committed Jan 10, 2016
1 parent 1815e00 commit 6aafece
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -1743,11 +1743,19 @@ the opening bracket of [^2], and then subsequent functions would kill [^2])."

(ert-deftest test-markdown-font-lock/italics-6 ()
"Test multiline italics across list items."
:expected-result :failed
(markdown-test-string
"* something about function foo_bar
* something else about foo_bar"
(markdown-test-range-has-face 31 34 nil)
(markdown-test-range-has-face 38 62 nil))
(markdown-test-string
"* something about function
foo_bar
* something else about
foo_bar"
(markdown-test-range-has-face 30 36 nil)
(markdown-test-range-has-face 63 69 nil))
(markdown-test-string
"foo_bar
* foo_bar"
Expand Down

0 comments on commit 6aafece

Please sign in to comment.