Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticmind committed Aug 22, 2017
2 parents 699c496 + 9b6fed0 commit a814d81
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/ReverseMarkdown.Test/ConverterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ namespace ReverseMarkdown.Test
{
public class ConverterTests
{

[Fact]
public void WhenThereIsAsideTag()
{
const string html = @"<aside>This text is in an aside tag.</aside> This text appears after aside.";
string expected = $"{Environment.NewLine}This text is in an aside tag.{Environment.NewLine} This text appears after aside.";
CheckConversion(html, expected);
}

[Fact]
public void WhenThereIsHtmlLink_ThenConvertToMarkdownLink()
{
Expand Down

0 comments on commit a814d81

Please sign in to comment.