mirror of
https://github.com/ceph/go-ceph
synced 2024-12-18 20:35:33 +00:00
44b8b10b97
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
13 lines
223 B
Go
13 lines
223 B
Go
package rados
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func (suite *RadosTestSuite) TestRequiresAlignment() {
|
|
suite.SetupConnection()
|
|
|
|
_, err := suite.ioctx.RequiresAlignment()
|
|
assert.NoError(suite.T(), err)
|
|
}
|