mirror of
https://github.com/ceph/go-ceph
synced 2025-03-04 02:18:37 +00:00
13 lines
207 B
Go
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)
|
|
}
|