protondrive_test.go 351 B

1234567891011121314151617
  1. package protondrive_test
  2. import (
  3. "testing"
  4. "github.com/rclone/rclone/backend/protondrive"
  5. "github.com/rclone/rclone/fstest/fstests"
  6. )
  7. // TestIntegration runs integration tests against the remote
  8. func TestIntegration(t *testing.T) {
  9. fstests.Run(t, &fstests.Opt{
  10. RemoteName: "TestProtonDrive:",
  11. NilObject: (*protondrive.Object)(nil),
  12. })
  13. }