ntfy/server/config_test.go

13 lines
217 B
Go
Raw Normal View History

2021-12-19 16:02:36 +13:00
package server_test
2021-12-08 06:23:42 +13:00
import (
"github.com/stretchr/testify/assert"
2021-12-19 16:02:36 +13:00
"heckel.io/ntfy/server"
2021-12-08 06:23:42 +13:00
"testing"
)
func TestConfig_New(t *testing.T) {
2021-12-19 16:02:36 +13:00
c := server.NewConfig(":1234")
2021-12-08 06:23:42 +13:00
assert.Equal(t, ":1234", c.ListenHTTP)
}