2017-06-26 01:47:54 +02:00
|
|
|
// Test QingStor filesystem interface
|
2017-08-03 15:31:55 +02:00
|
|
|
|
2018-04-06 21:33:51 +02:00
|
|
|
// +build !plan9
|
2017-08-03 15:31:55 +02:00
|
|
|
|
2017-06-26 01:47:54 +02:00
|
|
|
package qingstor_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-11 17:05:41 +01:00
|
|
|
"github.com/ncw/rclone/backend/qingstor"
|
2017-06-26 01:47:54 +02:00
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
2018-04-07 19:48:11 +02:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestQingStor:",
|
|
|
|
NilObject: (*qingstor.Object)(nil),
|
|
|
|
})
|
2017-06-26 01:47:54 +02:00
|
|
|
}
|