瀏覽代碼

Test unmarshal nil for type duration

tags/v2.0.0-rc1
9seconds 5 年之前
父節點
當前提交
e78c4d3bde
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6
    0
      config/type_duration_test.go

+ 6
- 0
config/type_duration_test.go 查看文件

18
 	suite.Suite
18
 	suite.Suite
19
 }
19
 }
20
 
20
 
21
+func (suite *TypeDurationTestSuite) TestUnmarshalNil() {
22
+	typ := &config.TypeDuration{}
23
+	suite.NoError(typ.UnmarshalText(nil))
24
+	suite.EqualValues(0, typ.Value(0))
25
+}
26
+
21
 func (suite *TypeDurationTestSuite) TestUnmarshalFail() {
27
 func (suite *TypeDurationTestSuite) TestUnmarshalFail() {
22
 	testData := []string{
28
 	testData := []string{
23
 		"1t",
29
 		"1t",

Loading…
取消
儲存