This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-markdown-cil/tests/MfGames.Markdown.Gemtext.Tests/ListTests.cs

26 lines
585 B
C#

using Xunit;
namespace MfGames.Markdown.Gemtext.Tests
{
public class ListTests
{
[Fact(Skip = "Not ready to figure this out.")]
public void NestedLists()
{
string input = string.Join(
"\n",
"- A",
" - B",
"- C");
string expected = string.Join(
"\n",
"* A",
"* B",
"* C");
string actual = MarkdownGemtext.ToGemtext(input);
Assert.Equal(expected, actual);
}
}
}