05d148aeb5
refactor storage node server refactor upload and download protocol
17 lines
334 B
Go
17 lines
334 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package storagenodedbtest_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"storj.io/storj/storagenode"
|
|
"storj.io/storj/storagenode/storagenodedb/storagenodedbtest"
|
|
)
|
|
|
|
func TestDatabase(t *testing.T) {
|
|
storagenodedbtest.Run(t, func(t *testing.T, db storagenode.DB) {
|
|
})
|
|
}
|