go-ceph/rbd/features_nautilus_test.go
John Mulligan cc9f4d6b39 rbd: remove luminous and mimic build tags
Luminous and mimic have not been supported for a few releases now.
There's no need to keep these build tags any more.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
2021-11-09 01:24:01 +00:00

14 lines
231 B
Go

package rbd
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetFeaturesInNautilus(t *testing.T) {
f, ok := featureNameToBit[FeatureNameMigrating]
assert.True(t, ok)
assert.Equal(t, f, FeatureMigrating)
}