mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-05 05:57:20 +00:00
Add tests for Chomp
This commit is contained in:
parent
42b33102cf
commit
a6bf6f52ce
1 changed files with 24 additions and 0 deletions
|
@ -9,6 +9,9 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type tstNoStringer struct {
|
||||||
|
}
|
||||||
|
|
||||||
func TestGt(t *testing.T) {
|
func TestGt(t *testing.T) {
|
||||||
for i, this := range []struct {
|
for i, this := range []struct {
|
||||||
left interface{}
|
left interface{}
|
||||||
|
@ -828,6 +831,27 @@ func TestMarkdownify(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestChomp(t *testing.T) {
|
||||||
|
base := "\n This is\na story "
|
||||||
|
for i, item := range []string{
|
||||||
|
"\n",
|
||||||
|
"\r",
|
||||||
|
"\r\n",
|
||||||
|
} {
|
||||||
|
chomped, _ := Chomp(base + item)
|
||||||
|
|
||||||
|
if chomped != base {
|
||||||
|
t.Errorf("[%d] Chomp failed, got '%v'", i, chomped)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := Chomp(tstNoStringer{})
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
t.Errorf("Chomp should fail")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestSafeHtml(t *testing.T) {
|
func TestSafeHtml(t *testing.T) {
|
||||||
for i, this := range []struct {
|
for i, this := range []struct {
|
||||||
str string
|
str string
|
||||||
|
|
Loading…
Reference in a new issue