예제 #1
0
func (s *instanceSuite) TestInstanceRootDiskGBNilSpec(c *gc.C) {
	inst := google.Instance{}
	size := inst.RootDiskGB()

	c.Check(size, gc.Equals, uint64(0))
}
예제 #2
0
파일: disk_test.go 프로젝트: Pankov404/juju
func (s *diskSuite) TestRootDiskInstanceNilSpec(c *gc.C) {
	inst := google.Instance{}
	attached := inst.RootDisk()

	c.Assert(attached, gc.IsNil)
}