diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-12-20 18:24:09 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-12-20 18:24:09 +0100 |
| commit | 73c4a664b03f8afa8edb527fb6a8cc310bdb3380 (patch) | |
| tree | 9ba2d2af2149024ea0dc05a88dfcecb351c90139 /markdown/ast_paragraph_test.go | |
| parent | 90246ee314cfbb6b6f0b43b51e392b6b5293b867 (diff) | |
test(markdown): use subtest to clean
Diffstat (limited to 'markdown/ast_paragraph_test.go')
| -rw-r--r-- | markdown/ast_paragraph_test.go | 37 |
1 files changed, 10 insertions, 27 deletions
diff --git a/markdown/ast_paragraph_test.go b/markdown/ast_paragraph_test.go index 2014ab9..ab3ab6c 100644 --- a/markdown/ast_paragraph_test.go +++ b/markdown/ast_paragraph_test.go @@ -3,31 +3,14 @@ package markdown import "testing" func TestParagraph(t *testing.T) { - c, err := Parse("bonsoir", nil) - if err != nil { - t.Fatal(err) - } - if c != "<p>bonsoir</p>" { - t.Errorf("failed, got %s", c) - } -} - -func TestParagraph_Replacer(t *testing.T) { - opt := &Option{ - Replaces: map[rune]string{'~': " "}, - } - c, err := Parse("bonsoir", opt) - if err != nil { - t.Fatal(err) - } - if c != "<p>bonsoir</p>" { - t.Errorf("failed, got %s", c) - } - c, err = Parse("bonsoir~!", opt) - if err != nil { - t.Fatal(err) - } - if c != "<p>bonsoir !</p>" { - t.Errorf("failed, got %s", c) - } + t.Run("paragraph", func(t *testing.T) { + t.Run("simple", test("bonsoir", `<p>bonsoir</p>`)) + }) + t.Run("replacer", func(t *testing.T) { + opt := &Option{ + Replaces: map[rune]string{'~': " "}, + } + t.Run("empty", testWithOptions(opt, "bonsoir", `<p>bonsoir</p>`)) + t.Run("simple", testWithOptions(opt, "bonsoir~!", `<p>bonsoir !</p>`)) + }) } |
