From 94dceb4f7c1740de9215b36ec183f93ca4337ee7 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Thu, 2 Oct 2025 19:52:38 +0200 Subject: style(markdown): fix typo in package name --- mardown/ast_quote_test.go | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 mardown/ast_quote_test.go (limited to 'mardown/ast_quote_test.go') diff --git a/mardown/ast_quote_test.go b/mardown/ast_quote_test.go deleted file mode 100644 index c3c7b3b..0000000 --- a/mardown/ast_quote_test.go +++ /dev/null @@ -1,23 +0,0 @@ -package mardown - -import "testing" - -func TestQuote(t *testing.T) { - content := ` -> Bonsoir, je suis un **code** -avec une source -` - lxs := lex(content) - tree, err := ast(lxs) - if err != nil { - t.Fatal(err) - } - c, err := tree.Eval() - if err != nil { - t.Fatal(err) - } - if c != `
Bonsoir, je suis un code

avec une source

` { - t.Errorf("failed, got %s", c) - t.Logf("lxs: %s\ntree: %s", lxs, tree) - } -} -- cgit v1.2.3