github.com/geofffranks/garden-linux@v0.0.0-20160715111146-26c893169cfa/system/dummy_suite_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  }