mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-10 06:06:47 -04:00
19 lines
390 B
Go
19 lines
390 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", "..")
|
|
}
|