File: services_test.go

package info (click to toggle)
golang-github-joyent-gosdc 0.0~git20161202.ec8b350-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 472 kB
  • sloc: makefile: 3
file content (11 lines) | stat: -rw-r--r-- 216 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package cloudapi_test

import (
	gc "launchpad.net/gocheck"
)

func (s *LocalTests) TestListServices(c *gc.C) {
	services, err := s.testClient.ListServices()
	c.Assert(err, gc.IsNil)
	c.Assert(services, gc.NotNil)
}