caddy/caddyhttp/markdown/summary/summary_test.go

12 lines
259 B
Go
Raw Normal View History

2016-06-21 14:11:55 +08:00
package summary
import "testing"
func TestMarkdown(t *testing.T) {
input := []byte(`Testing with just a few words.`)
got := string(Markdown(input, 3))
if want := "Testing with just"; want != got {
t.Errorf("Expected '%s' but got '%s'", want, got)
}
}