github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/provider/cloudsigma/provider_test.go (about) 1 // Copyright 2015 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package cloudsigma 5 6 import ( 7 "testing" 8 9 gc "gopkg.in/check.v1" 10 11 tt "github.com/juju/juju/testing" 12 ) 13 14 func TestCloudSigma(t *testing.T) { 15 gc.TestingT(t) 16 } 17 18 type providerSuite struct { 19 tt.BaseSuite 20 } 21 22 var _ = gc.Suite(&providerSuite{})