2015-11-27 18:25:52 +00:00
|
|
|
// Test B2 filesystem interface
|
|
|
|
package b2_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-01-11 16:05:41 +00:00
|
|
|
"github.com/ncw/rclone/backend/b2"
|
2015-11-27 18:25:52 +00:00
|
|
|
"github.com/ncw/rclone/fstest/fstests"
|
|
|
|
)
|
|
|
|
|
2018-04-07 17:48:11 +00:00
|
|
|
// TestIntegration runs integration tests against the remote
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
|
|
fstests.Run(t, &fstests.Opt{
|
|
|
|
RemoteName: "TestB2:",
|
|
|
|
NilObject: (*b2.Object)(nil),
|
|
|
|
})
|
2015-11-27 18:25:52 +00:00
|
|
|
}
|