github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/provider/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 "testing" 9 10 gc "gopkg.in/check.v1" 11 ) 12 13 func Test(t *testing.T) { 14 //TODO(bogdanteleaga): Fix this once manual provider is supported on 15 //windows 16 if runtime.GOOS == "windows" { 17 t.Skip("Manual provider is not yet supported on windows") 18 } 19 gc.TestingT(t) 20 }