mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
transform: Add missing test case for NewEmptyTransforms
This commit is contained in:
parent
21cb526462
commit
96e990456b
1 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,7 @@ package transform
|
|||
import (
|
||||
"bytes"
|
||||
"github.com/spf13/hugo/helpers"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
|
@ -211,6 +212,11 @@ func TestXMLAbsURL(t *testing.T) {
|
|||
apply(t.Errorf, tr, xml_abs_url_tests)
|
||||
}
|
||||
|
||||
func TestNewEmptyTransforms(t *testing.T) {
|
||||
transforms := NewEmptyTransforms()
|
||||
assert.Equal(t, 20, cap(transforms))
|
||||
}
|
||||
|
||||
type errorf func(string, ...interface{})
|
||||
|
||||
func applyWithPath(ef errorf, tr chain, tests []test, path string) {
|
||||
|
|
Loading…
Reference in a new issue