Skip to content

Commit

Permalink
Update failing tests
Browse files Browse the repository at this point in the history
Added a better description for one test, fixed another which
should now be passing.
  • Loading branch information
jrblevin committed Jan 3, 2016
1 parent 2c2abec commit 1b21b1f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,10 @@ body"
(markdown-test-range-has-face 4 9 markdown-italic-face)))

(ert-deftest test-markdown-font-lock/blockquote-link ()
"Test font lock for links inside of a blockquote."
"Test font lock for links inside of a blockquote.
This test will fail until font lock for inline links inside
blockquotes is implemented (at present, the blockquote face
takes precedence)."
:expected-result :failed
(markdown-test-string
"> [link](url)"
Expand All @@ -2218,10 +2221,9 @@ body"

(ert-deftest test-markdown-font-lock/blockquote-comment ()
"Test font lock for comments inside of a blockquote."
:expected-result :failed
(markdown-test-string
"> <!-- comment -->"
(markdown-test-range-has-face 1 18 markdown-blockquote-face)
(markdown-test-range-has-face 1 1 markdown-markup-face)
(markdown-test-range-has-face 3 18 markdown-comment-face)))

(ert-deftest test-markdown-font-lock/pre-override ()
Expand Down

0 comments on commit 1b21b1f

Please sign in to comment.