mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
b94d87ae2d
optional setting to test SetTier on only few supported tiers. Remove unused optional interface ListTiers and backend and internal tests
19 lines
356 B
Go
19 lines
356 B
Go
// +build !freebsd,!netbsd,!openbsd,!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)
|
|
}
|