@@ -25,6 +25,7 @@ private MarkdownPipeline GetPipelineWithBootstrap(MediaOptions options = null)
25
25
[ Test ]
26
26
[ TestCase ( "" , "<p><video width=\" 500\" height=\" 281\" controls=\" \" ><source type=\" video/mp4\" src=\" https://sample.com/video.mp4\" ></source></video></p>\n " ) ]
27
27
[ TestCase ( "" , "<p><video width=\" 500\" height=\" 281\" controls=\" \" ><source type=\" video/mp4\" src=\" //sample.com/video.mp4\" ></source></video></p>\n " ) ]
28
+ [ TestCase ( @"" , "<p><iframe src=\" https://www.youtube.com/embed/6BUptHVuvyI\" class=\" youtubeshort\" width=\" 500\" height=\" 281\" frameborder=\" 0\" allowfullscreen=\" \" ></iframe></p>\n " ) ]
28
29
[ TestCase ( @"" , "<p><iframe src=\" https://www.youtube.com/embed/mswPy5bt3TQ\" class=\" youtube\" width=\" 500\" height=\" 281\" frameborder=\" 0\" allowfullscreen=\" \" ></iframe></p>\n " ) ]
29
30
[ TestCase ( "" , "<p><iframe src=\" https://music.yandex.ru/iframe/#track/4402274/411845/\" class=\" yandex\" width=\" 500\" height=\" 281\" frameborder=\" 0\" ></iframe></p>\n " ) ]
30
31
[ TestCase ( "" , "<p><iframe src=\" https://player.vimeo.com/video/8607834\" class=\" vimeo\" width=\" 500\" height=\" 281\" frameborder=\" 0\" allowfullscreen=\" \" ></iframe></p>\n " ) ]
@@ -33,7 +34,7 @@ private MarkdownPipeline GetPipelineWithBootstrap(MediaOptions options = null)
33
34
public void TestBuiltInHosts ( string markdown , string expected )
34
35
{
35
36
string html = Markdown . ToHtml ( markdown , GetPipeline ( ) ) ;
36
- Assert . AreEqual ( html , expected ) ;
37
+ Assert . AreEqual ( expected , html ) ;
37
38
}
38
39
39
40
[ TestCase ( "" ,
@@ -43,7 +44,7 @@ public void TestBuiltInHosts(string markdown, string expected)
43
44
public void TestBuiltInHostsWithRelativePaths ( string markdown , string expected )
44
45
{
45
46
string html = Markdown . ToHtml ( markdown , GetPipeline ( ) ) ;
46
- Assert . AreEqual ( html , expected ) ;
47
+ Assert . AreEqual ( expected , html ) ;
47
48
}
48
49
49
50
private class TestHostProvider : IHostProvider
0 commit comments