Alex Vanin
f69d2ad83c
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
16 lines
482 B
Go
16 lines
482 B
Go
package status_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message"
|
|
messagetest "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message/test"
|
|
statustest "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/status/test"
|
|
)
|
|
|
|
func TestMessageConvert(t *testing.T) {
|
|
messagetest.TestRPCMessage(t,
|
|
func(empty bool) message.Message { return statustest.Detail(empty) },
|
|
func(empty bool) message.Message { return statustest.Status(empty) },
|
|
)
|
|
}
|