delete handler test

This commit is contained in:
sentriz
2019-04-30 17:16:47 +01:00
parent 27981ae3cf
commit de807902de
3 changed files with 0 additions and 53 deletions

View File

@@ -2,7 +2,6 @@ package db
import (
"log"
"path/filepath"
"runtime"
"github.com/jinzhu/gorm"
@@ -21,14 +20,3 @@ func New() *gorm.DB {
}
return db
}
// New creates a new GORM connection to the mock database
func NewMock() *gorm.DB {
// projectRoot presumes this file is `<root>/db/db.go`
dbPath, _ := filepath.Abs(filepath.Join(cFile, "../../test_data/mock.db"))
db, err := gorm.Open("sqlite3", dbPath)
if err != nil {
log.Printf("when opening mock database: %v\n", err)
}
return db
}