mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
Refactor database models into separate package.
This commit is contained in:
25
model/database_test.go
Normal file
25
model/database_test.go
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright 2014 Team 254. All Rights Reserved.
|
||||
// Author: pat@patfairbank.com (Patrick Fairbank)
|
||||
|
||||
package model
|
||||
|
||||
import (
|
||||
"github.com/stretchr/testify/assert"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
)
|
||||
|
||||
const testDbPath = "test.db"
|
||||
|
||||
func TestOpenUnreachableDatabase(t *testing.T) {
|
||||
_, err := OpenDatabase("..", "nonexistentdir/test.db")
|
||||
assert.NotNil(t, err)
|
||||
}
|
||||
|
||||
func setupTestDb(t *testing.T) *Database {
|
||||
os.Remove(filepath.Join("..", testDbPath))
|
||||
db, err := OpenDatabase("..", testDbPath)
|
||||
assert.Nil(t, err)
|
||||
return db
|
||||
}
|
||||
Reference in New Issue
Block a user