~juju/pyjuju/go

« back to all changes in this revision

Viewing changes to schema/schema_test.go

  • Committer: Gustavo Niemeyer
  • Date: 2011-08-23 15:10:42 UTC
  • Revision ID: gustavo@niemeyer.net-20110823151042-5u2069gd39vyi2i1
Bootstrapped package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package schema_test
 
2
 
 
3
import (
 
4
        "testing"
 
5
        "launchpad.net/gocheck"
 
6
        "launchpad.net/ensemble/go/schema"
 
7
)
 
8
 
 
9
func Test(t *testing.T) {
 
10
        gocheck.TestingT(t)
 
11
}
 
12
 
 
13
type S struct{}
 
14
 
 
15
var _ = gocheck.Suite(S{})
 
16
 
 
17
func (s *S) TestEmpty(c *gocheck.C) {
 
18
        _ = schema.Nothing
 
19
}