aboutsummaryrefslogtreecommitdiff
path: root/internal/db/models_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/models_test.go')
-rw-r--r--internal/db/models_test.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/internal/db/models_test.go b/internal/db/models_test.go
deleted file mode 100644
index 53f8b4f0..00000000
--- a/internal/db/models_test.go
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2016 The Gogs Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
-
-package db
-
-import (
- "testing"
-
- . "github.com/smartystreets/goconvey/convey"
-)
-
-func Test_parsePostgreSQLHostPort(t *testing.T) {
- testSuites := []struct {
- input string
- host, port string
- }{
- {"127.0.0.1:1234", "127.0.0.1", "1234"},
- {"127.0.0.1", "127.0.0.1", "5432"},
- {"[::1]:1234", "[::1]", "1234"},
- {"[::1]", "[::1]", "5432"},
- {"/tmp/pg.sock:1234", "/tmp/pg.sock", "1234"},
- {"/tmp/pg.sock", "/tmp/pg.sock", "5432"},
- }
-
- Convey("Parse PostgreSQL host and port", t, func() {
- for _, suite := range testSuites {
- host, port := parsePostgreSQLHostPort(suite.input)
- So(host, ShouldEqual, suite.host)
- So(port, ShouldEqual, suite.port)
- }
- })
-}