~juju/pyjuju/go

« back to all changes in this revision

Viewing changes to upstart/service_test.go

  • Committer: William Reade
  • Date: 2012-05-04 13:43:57 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: fwereade@gmail.com-20120504134357-trzcbnfhx2eh2c9r
first cut, untested

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package upstart_test
 
2
 
 
3
import (
 
4
        . "launchpad.net/gocheck"
 
5
        "testing"
 
6
)
 
7
 
 
8
func Test(t *testing.T) { TestingT(t) }
 
9
 
 
10
type ServiceSuite struct{}
 
11
 
 
12
var _ = Suite(&ServiceSuite{})
 
13
 
 
14
func (s *ServiceSuite) TestFails(c *C) {
 
15
        c.Fatalf("blam")
 
16
}