mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b04f1416f6
opts/address_pools_test.go:7:39: empty-lines: extra empty line at the end of a block (revive) opts/opts_test.go:12:42: empty-lines: extra empty line at the end of a block (revive) opts/opts_test.go:60:49: empty-lines: extra empty line at the end of a block (revive) opts/opts_test.go:253:37: empty-lines: extra empty line at the end of a block (revive) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
433 B
Go
19 lines
433 B
Go
package opts // import "github.com/docker/docker/opts"
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestAddressPoolOpt(t *testing.T) {
|
|
poolopt := &PoolsOpt{}
|
|
var addresspool = "base=175.30.0.0/16,size=16"
|
|
var invalidAddresspoolString = "base=175.30.0.0/16,size=16, base=175.33.0.0/16,size=24"
|
|
|
|
if err := poolopt.Set(addresspool); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := poolopt.Set(invalidAddresspoolString); err == nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|