(c *C)
| 39 | var _ = Suite(&SupervisorSuite{}) |
| 40 | |
| 41 | func (s *SupervisorSuite) TestStartStopEmpty(c *C) { |
| 42 | sup := New(newProxy, s.ng, Options{Clock: s.clock}) |
| 43 | err := sup.Start() |
| 44 | c.Assert(err, IsNil) |
| 45 | defer sup.Stop() |
| 46 | } |
| 47 | |
| 48 | func (s *SupervisorSuite) TestInitFromExistingConfig(c *C) { |
| 49 | e := testutils.NewResponder("Hi, I'm endpoint") |