pcmt/modules/localbreach/breach_test.go
surtur c3a565adf5
All checks were successful
continuous-integration/drone/push Build is passing
go(localbreach): add test+testdata
2023-08-07 22:10:48 +02:00

22 lines
343 B
Go

// Copyright 2023 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: AGPL-3.0-only
package localbreach
import (
"path"
"testing"
)
func TestLocalbreach(t *testing.T) {
testDir := "./testdata"
t1 := "test1.yaml"
schema, err := Load(path.Join(testDir, t1))
if err != nil {
t.Fatal(err)
}
t.Logf("schema: %+v", schema)
}