experimental-cli/pigeon/db_test.go

14 lines
145 B
Go
Raw Normal View History

2020-08-25 13:14:14 +00:00
package pigeon
import (
"testing"
)
2020-08-26 12:34:01 +00:00
func TestSetUpTeardown(t *testing.T) {
2020-08-25 13:14:14 +00:00
db := openDB()
err := db.Ping()
if err != nil {
t.Fail()
}
}