mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 13:46:44 -04:00
19 lines
378 B
Go
19 lines
378 B
Go
// Copyright 2014 Team 254. All Rights Reserved.
|
|
// Author: pat@patfairbank.com (Patrick Fairbank)
|
|
|
|
package model
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestOpenUnreachableDatabase(t *testing.T) {
|
|
_, err := OpenDatabase("nonexistentdir/test.db")
|
|
assert.NotNil(t, err)
|
|
}
|
|
|
|
func setupTestDb(t *testing.T) *Database {
|
|
return SetupTestDb(t, "model")
|
|
}
|