yaml namespaces

This commit is contained in:
Bel LaPointe
2021-12-15 06:53:28 -07:00
parent 0121c426f7
commit bc8a0d82df
4 changed files with 187 additions and 0 deletions

View File

@@ -103,6 +103,12 @@ func TestImplementations(t *testing.T) {
cases = append(cases, bolt)
}
if yamls, err := NewYaml(path.Join(dir, "yaml")); err != nil {
t.Errorf("cannot make yaml: %v", err)
} else {
cases = append(cases, yamls)
}
if files, err := NewFiles(path.Join(dir, "files")); err != nil {
t.Errorf("cannot make files: %v", err)
} else {