rproxy3/server/new_test.go

12 lines
108 B
Go

package server
import (
"os"
"testing"
)
func TestServerNew(t *testing.T) {
New("")
New(os.DevNull)
}