This commit is contained in:
Jonathan Leibiusky @xetorthio
2017-05-19 17:25:05 -03:00
parent 686c861928
commit 911d56bc49
5 changed files with 154 additions and 0 deletions

9
pwd/docker_mock_test.go Normal file
View File

@@ -0,0 +1,9 @@
package pwd
type mockDocker struct {
createNetwork func(string) error
}
func (m *mockDocker) CreateNetwork(id string) error {
return m.createNetwork(id)
}