mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
13 lines
207 B
Go
13 lines
207 B
Go
package network
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestNetworkGetDefaultValue(t *testing.T) {
|
|
RegisterTestingT(t)
|
|
Expect(GetDefaultValue("bind-all-interfaces")).To(Equal("false"))
|
|
}
|