File: source_test.go

package info (click to toggle)
golang-github-juju-gomaasapi 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 908 kB
  • sloc: makefile: 17
file content (17 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2012-2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.

package gomaasapi

import (
	. "gopkg.in/check.v1"
)

type MyTestSuite struct{}

var _ = Suite(&MyTestSuite{})

// TODO: Replace with real test functions.  Give them real names.
func (suite *MyTestSuite) TestXXX(c *C) {
	c.Check(2+2, Equals, 4)
}