~juju-qa/juju-core/1.16-packaging

« back to all changes in this revision

Viewing changes to src/launchpad.net/juju-core/utils/apt_test.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-10-10 18:07:45 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20131010180745-wuo0vv7hq7faavdk
Tags: 1.16.0-0ubuntu1
New upstream stable release (LP: #1219879).

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        "os/exec"
9
9
 
10
10
        gc "launchpad.net/gocheck"
 
11
 
 
12
        "launchpad.net/juju-core/testing/testbase"
11
13
)
12
14
 
13
 
type AptSuite struct{}
 
15
type AptSuite struct {
 
16
        testbase.LoggingSuite
 
17
}
14
18
 
15
19
var _ = gc.Suite(&AptSuite{})
16
20