github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/containerizer/system/system_suite_notlinux_test.go (about) 1 // +build !linux 2 3 package system_test 4 5 import ( 6 "testing" 7 8 . "github.com/onsi/ginkgo" 9 . "github.com/onsi/gomega" 10 ) 11 12 func TestSystem(t *testing.T) { 13 It("contains low-level code that only works on linux", func() { 14 Skip("Linux only suite") 15 }) 16 17 RegisterFailHandler(Fail) 18 RunSpecs(t, "System Suite") 19 }