mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:47:52 +08:00
add image test
This commit is contained in:
parent
7a8a37f4a0
commit
6585dd3a3e
@ -101,6 +101,25 @@ needs_cleanup: true
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestAbsoluteImage()
|
||||||
|
{
|
||||||
|
AddStep("Add absolute image", () =>
|
||||||
|
{
|
||||||
|
markdownContainer.Text = "![intro](/wiki/Interface/img/intro-screen.jpg)";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestRelativeImage()
|
||||||
|
{
|
||||||
|
AddStep("Add relative image", () =>
|
||||||
|
{
|
||||||
|
markdownContainer.CurrentPath = "Interface/";
|
||||||
|
markdownContainer.Text = "![intro](img/intro-screen.jpg)";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private class TestMarkdownContainer : WikiMarkdownContainer
|
private class TestMarkdownContainer : WikiMarkdownContainer
|
||||||
{
|
{
|
||||||
public LinkInline Link;
|
public LinkInline Link;
|
||||||
|
Loading…
Reference in New Issue
Block a user