~rogpeppe/juju-core/azure

« back to all changes in this revision

Viewing changes to cmd/juju/bootstrap_test.go

  • Committer: William Reade
  • Date: 2012-01-20 21:32:53 UTC
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: fwereade@gmail.com-20120120213253-csks5e12opl8t1rq
hefty rearrangement, few actual changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package control_test
 
1
package main_test
2
2
 
3
3
import (
4
4
        . "launchpad.net/gocheck"
5
 
        "launchpad.net/juju/go/control"
 
5
        main "launchpad.net/juju/go/cmd/juju"
6
6
)
7
7
 
8
8
type BootstrapSuite struct{}
10
10
var _ = Suite(&BootstrapSuite{})
11
11
 
12
12
func (s *BootstrapSuite) TestEnvironment(c *C) {
13
 
        bc := new(control.BootstrapCommand)
 
13
        bc := new(main.BootstrapCommand)
14
14
        c.Assert(bc.Environment(), Equals, "")
15
15
 
16
16
        err := bc.Parse([]string{})