Skip to content

Commit

Permalink
Added failing test from commonmark/cmark#59
Browse files Browse the repository at this point in the history
  • Loading branch information
Knagis committed Jun 25, 2015
1 parent 8bd1257 commit 1dc44e8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CommonMark.Tests/EmphasisTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,12 @@ public void DelayedEmphasisMatch4()
{
Helpers.ExecuteTest("**[foo* bar", "<p>*<em>[foo</em> bar</p>");
}

[TestMethod]
[TestCategory("Inlines - Emphasis and strong emphasis")]
public void DelayedEmphasisMatch5()
{
Helpers.ExecuteTest("[a*b**c*]", "<p>[a<em>b</em><em>c</em>]</p>");
}
}
}

0 comments on commit 1dc44e8

Please sign in to comment.