github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/environs/manual/suite_test.go (about)

     1  // Copyright 2013 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package manual_test
     5  
     6  import (
     7  	"runtime"
     8  	stdtesting "testing"
     9  
    10  	"github.com/juju/juju/testing"
    11  )
    12  
    13  func Test(t *stdtesting.T) {
    14  	if runtime.GOOS == "windows" {
    15  		t.Skip("Manual provider is not supported on windows")
    16  	}
    17  	testing.MgoTestPackage(t)
    18  }