1 Star 0 Fork 0

尚云行者/m7s-monitor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
yaml_test.go 373 Bytes
一键复制 编辑 原始数据 按行查看 历史
langhuihui 提交于 2023-04-04 20:07 . first commit
package monitor
import (
"testing"
"gopkg.in/yaml.v3"
)
var testYaml = `
- time: 2023-03-22T10:00:00Z
path: live/test
- time: 2023-03-22T12:00:00Z
path: live/test2
`
func TestYaml(t *testing.T) {
t.Run(t.Name(), func(t *testing.T) {
var index []Index
err := yaml.Unmarshal([]byte(testYaml), &index)
if err != nil {
t.Fatal(err)
}
t.Log(index)
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/juedian/m7s-monitor.git
git@gitee.com:juedian/m7s-monitor.git
juedian
m7s-monitor
m7s-monitor
v4

搜索帮助