mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-09 19:47:02 +02:00
committed by
Bjørn Erik Pedersen
parent
df85cb9ae2
commit
00fe7e0408
@@ -215,7 +215,7 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
boolRe = regexp.MustCompile(`^(true$)|(false$)`)
|
||||
boolRe = regexp.MustCompile(`^(true|false)$`)
|
||||
intRe = regexp.MustCompile(`^[-+]?\d+$`)
|
||||
floatRe = regexp.MustCompile(`^[-+]?\d*\.\d+$`)
|
||||
)
|
||||
|
@@ -38,6 +38,13 @@ func TestItemValTyped(t *testing.T) {
|
||||
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, true)
|
||||
source = []byte("false")
|
||||
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, false)
|
||||
source = []byte("trued")
|
||||
source = []byte("falsex")
|
||||
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "falsex")
|
||||
source = []byte("xfalse")
|
||||
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "xfalse")
|
||||
source = []byte("truex")
|
||||
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "truex")
|
||||
source = []byte("xtrue")
|
||||
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "xtrue")
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user