2019-04-15 19:03:33 +00:00
|
|
|
// +build !plan9,!solaris
|
2018-09-11 01:55:06 +00:00
|
|
|
|
|
|
|
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
|
2018-09-18 12:25:20 +00:00
|
|
|
enabled := f.Features().SetTier
|
2018-09-11 01:55:06 +00:00
|
|
|
assert.True(t, enabled)
|
|
|
|
enabled = f.Features().GetTier
|
|
|
|
assert.True(t, enabled)
|
|
|
|
}
|