github.com/axw/juju@v0.0.0-20161005053422-4bd6544d08d4/cmd/juju/application/package_test.go (about) 1 // Copyright 2015 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package application_test 5 6 import ( 7 "runtime" 8 stdtesting "testing" 9 10 _ "github.com/juju/juju/provider/dummy" 11 "github.com/juju/juju/testing" 12 ) 13 14 // TODO(wallyworld) - convert tests moved across from commands package to not require mongo 15 16 func TestPackage(t *stdtesting.T) { 17 if runtime.GOARCH == "386" { 18 t.Skipf("skipping package for %v/%v, see http://pad.lv/1425569", runtime.GOOS, runtime.GOARCH) 19 } 20 testing.MgoTestPackage(t) 21 }