Files
Atay-Makhzan/routers/web/user/main_test.go
T

17 lines
332 B
Go
Raw Normal View History

2017-08-02 22:09:16 -07:00
// Copyright 2017 The Gitea 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 user
import (
"path/filepath"
"testing"
"code.gitea.io/gitea/models/db"
2017-08-02 22:09:16 -07:00
)
func TestMain(m *testing.M) {
db.MainTest(m, filepath.Join("..", "..", ".."))
2017-08-02 22:09:16 -07:00
}