15 lines
227 B
Go
15 lines
227 B
Go
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package testqueue
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"storj.io/storj/storage/testsuite"
|
||
|
)
|
||
|
|
||
|
func TestQueue(t *testing.T) {
|
||
|
testsuite.RunQueueTests(t, New())
|
||
|
}
|