github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/api/backups/package_test.go (about) 1 // Copyright 2014 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package backups_test 5 6 import ( 7 "runtime" 8 "testing" 9 10 coretesting "github.com/juju/juju/testing" 11 ) 12 13 func TestAll(t *testing.T) { 14 // TODO(bogdanteleaga): Fix these tests on windows 15 if runtime.GOOS == "windows" { 16 t.Skip("bug 1403084: Skipping this on windows for now") 17 } 18 coretesting.MgoTestPackage(t) 19 }