1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00
Files
rclone/backend/azureblob/azureblob_internal_test.go
Nick Craig-Wood 411f75aadf azureblob: enable on freebsd, netbsd, openbsd
At some point the SDK was fixed on these architectures, so re-enable
building the azure blob backend for them.
2018-11-26 08:32:58 +00:00

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)
}