mirror of
https://github.com/ceph/go-ceph
synced 2025-01-31 02:21:52 +00:00
16 lines
255 B
Go
16 lines
255 B
Go
|
//go:build ceph_preview
|
||
|
// +build ceph_preview
|
||
|
|
||
|
package rados
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func (suite *RadosTestSuite) TestAlignment() {
|
||
|
suite.SetupConnection()
|
||
|
|
||
|
_, err := suite.ioctx.Alignment()
|
||
|
assert.NoError(suite.T(), err)
|
||
|
}
|