interfaces/builtin: add initial docker interface #1619

Closed
wants to merge 17 commits into
from
Jump to file or symbol
Failed to load files and symbols.
+722 −0
Split
@@ -28,6 +28,7 @@ var allInterfaces = []interfaces.Interface{
&BluezInterface{},
&BrowserSupportInterface{},
&ContentInterface{},
+ &DockerInterface{},
&GpioInterface{},
&LocationControlInterface{},
&LocationObserveInterface{},
@@ -35,6 +35,7 @@ func (s *AllSuite) TestInterfaces(c *C) {
c.Check(all, Contains, &builtin.BoolFileInterface{})
c.Check(all, Contains, &builtin.BluezInterface{})
c.Check(all, Contains, &builtin.BrowserSupportInterface{})
+ c.Check(all, Contains, &builtin.DockerInterface{})
c.Check(all, Contains, &builtin.GpioInterface{})
c.Check(all, Contains, &builtin.LocationControlInterface{})
c.Check(all, Contains, &builtin.LocationObserveInterface{})
Oops, something went wrong.