本文整理汇总了Golang中github.com/underarmour/dynago.Document.GetTime方法的典型用法代码示例。如果您正苦于以下问题:Golang Document.GetTime方法的具体用法?Golang Document.GetTime怎么用?Golang Document.GetTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/underarmour/dynago.Document
的用法示例。
在下文中一共展示了Document.GetTime方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestDocumentGetTimeReturnsNilWhenTheKeyDoesNotExist
func TestDocumentGetTimeReturnsNilWhenTheKeyDoesNotExist(t *testing.T) {
doc := dynago.Document{}
assert.Nil(t, doc.GetTime("time"))
}
示例2: TestDocumentGetTimePanicsWhenFormatIsNotIso8601
func TestDocumentGetTimePanicsWhenFormatIsNotIso8601(t *testing.T) {
doc := dynago.Document{"time": "Foo"}
assert.Panics(t, func() { doc.GetTime("time") })
}
示例3: TestDocumentGetTimeReturnsTheTimeValueFromISO8601
func TestDocumentGetTimeReturnsTheTimeValueFromISO8601(t *testing.T) {
doc := dynago.Document{"time": "1990-04-16T00:00:00Z"}
val, _ := time.Parse("2006-01-02T15:04:05Z", "1990-04-16T00:00:00Z")
assert.Equal(t, &val, doc.GetTime("time"))
}