mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 10:13:39 +08:00
12 lines
259 B
Go
12 lines
259 B
Go
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)
|
|
}
|
|
}
|