mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-09-17 04:51:31 +00:00
15 lines
299 B
Go
15 lines
299 B
Go
package main_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
var _ = Describe("yaml-patch", func() {
|
|
It("builds", func() {
|
|
_, err := gexec.Build("github.com/krishicks/yaml-patch/cmd/yaml-patch")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
})
|
|
})
|