mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00: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