storj/satellite/satellitedb/database_test.go
2019-01-24 15:15:10 -05:00

17 lines
316 B
Go

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