mirror of
https://github.com/rclone/rclone.git
synced 2025-12-06 00:03:32 +00:00
At some point the SDK was fixed on these architectures, so re-enable building the azure blob backend for them.
19 lines
330 B
Go
19 lines
330 B
Go
// +build !plan9,!solaris,go1.8
|
|
|
|
package azureblob
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func (f *Fs) InternalTest(t *testing.T) {
|
|
// Check first feature flags are set on this
|
|
// remote
|
|
enabled := f.Features().SetTier
|
|
assert.True(t, enabled)
|
|
enabled = f.Features().GetTier
|
|
assert.True(t, enabled)
|
|
}
|