17 lines
331 B
Go
17 lines
331 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package satellitedb_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"storj.io/storj/satellite/satellitedb"
|
|
"storj.io/storj/satellite/satellitedb/satellitedbtest"
|
|
)
|
|
|
|
func TestDatabase(t *testing.T) {
|
|
satellitedbtest.Run(t, func(t *testing.T, db *satellitedb.DB) {
|
|
})
|
|
}
|