markdown_test.gno

0.19 Kb ยท 13 lines
 1package markdown
 2
 3import (
 4	"strings"
 5	"testing"
 6)
 7
 8func TestRender(t *testing.T) {
 9	output := Render("")
10	if !strings.Contains(output, "Gno Flavored Markdown") {
11		t.Errorf("invalid output")
12	}
13}