azureblob and fstests - Modify integration tests to include new

optional setting to test SetTier on only few supported tiers.

Remove unused optional interface ListTiers and backend and internal tests
This commit is contained in:
sandeepkru 2018-09-18 05:25:20 -07:00 committed by Nick Craig-Wood
parent e0c5f7ff1b
commit b94d87ae2d
4 changed files with 16 additions and 33 deletions

View file

@ -14,7 +14,8 @@ import (
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "TestAzureBlob:",
NilObject: (*azureblob.Object)(nil),
RemoteName: "TestAzureBlob:",
NilObject: (*azureblob.Object)(nil),
TiersToTest: []string{"Hot", "Cool"},
})
}