buttons_test.gno

0.30 Kb ยท 14 lines
 1package buttons
 2
 3import (
 4	"strings"
 5	"testing"
 6)
 7
 8func TestRenderMotdLink(t *testing.T) {
 9	res := Render("motd")
10	const wantLink = "/r/docs/buttons$help&func=UpdateMOTD&newmotd=Message%21"
11	if !strings.Contains(res, wantLink) {
12		t.Fatalf("%s\ndoes not contain correct help page link: %s", res, wantLink)
13	}
14}