mirror of
https://github.com/rclone/rclone.git
synced 2025-07-22 22:44:22 +02:00
.circleci
.github
backend
alias
all
amazonclouddrive
azureblob
azureblob.go
azureblob_internal_test.go
azureblob_test.go
azureblob_unsupported.go
b2
box
cache
crypt
drive
dropbox
ftp
googlecloudstorage
http
hubic
jottacloud
koofr
local
mega
onedrive
opendrive
pcloud
qingstor
s3
sftp
swift
union
webdav
yandex
bin
cmd
docs
fs
fstest
graphics
lib
vendor
vfs
.appveyor.yml
.gitignore
.golangci.yml
.pkgr.yml
.travis.yml
CONTRIBUTING.md
COPYING
MAINTAINERS.md
MANUAL.html
MANUAL.md
MANUAL.txt
Makefile
README.md
RELEASE.md
go.mod
go.sum
notes.txt
rclone.1
rclone.go
19 lines
324 B
Go
19 lines
324 B
Go
// +build !plan9,!solaris
|
|
|
|
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)
|
|
}
|