mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
eb41253764
FreeBSD support was added in Azure/azure-storage-blob-go@0562badec5 OpenBSD and NetBSD support was added in Azure/azure-storage-blob-go@1d6dd77d74
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)
|
|
}
|