go-ceph/rados/ioctx_pool_alignment_test.go
Anoop C S 6e051a520d rados: Make IOContext.Alignment stable
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
2022-12-06 14:20:29 +00:00

13 lines
207 B
Go

package rados
import (
"github.com/stretchr/testify/assert"
)
func (suite *RadosTestSuite) TestAlignment() {
suite.SetupConnection()
_, err := suite.ioctx.Alignment()
assert.NoError(suite.T(), err)
}