mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-08 00:54:07 +01:00
16 lines
270 B
Go
16 lines
270 B
Go
package config
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestWebConfig_SocketAddress(t *testing.T) {
|
|
web := &WebConfig{
|
|
Address: "0.0.0.0",
|
|
Port: 8081,
|
|
}
|
|
if web.SocketAddress() != "0.0.0.0:8081" {
|
|
t.Errorf("expected %s, got %s", "0.0.0.0:8081", web.SocketAddress())
|
|
}
|
|
}
|