github.com/rogpeppe/juju@v0.0.0-20140613142852-6337964b789e/juju/osenv/package_test.go (about)

     1  // Copyright 2013 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package osenv_test
     5  
     6  import (
     7  	stdtesting "testing"
     8  
     9  	"github.com/juju/testing"
    10  	gc "launchpad.net/gocheck"
    11  
    12  	coretesting "github.com/juju/juju/testing"
    13  )
    14  
    15  func Test(t *stdtesting.T) {
    16  	gc.TestingT(t)
    17  }
    18  
    19  type importSuite struct {
    20  	testing.CleanupSuite
    21  }
    22  
    23  var _ = gc.Suite(&importSuite{})
    24  
    25  func (*importSuite) TestDependencies(c *gc.C) {
    26  	c.Assert(coretesting.FindJujuCoreImports(c, "github.com/juju/juju/juju/osenv"),
    27  		gc.HasLen, 0)
    28  }