mirror of
https://github.com/rancher/plugins.git
synced 2025-09-02 16:00:41 +00:00
- bump to go 1.10 - Add a linker tag with the build version - Remove fastbuild, go builds are cached now - Use better ginkgo suite names
16 lines
224 B
Go
16 lines
224 B
Go
// The boilerplate needed for Ginkgo
|
|
|
|
package main
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestSample(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "plugins/sample")
|
|
}
|