australis/internal/util_test.go
2020-05-06 18:30:22 -07:00

18 lines
327 B
Go

package internal
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestUnmarshalJob(t *testing.T) {
_, err := UnmarshalJob("../test/hello_world.yaml")
assert.NoError(t, err)
}
func TestUnmarshalUpdate(t *testing.T) {
_, err := UnmarshalUpdate("../test/update_hello_world.yaml")
assert.NoError(t, err)
}