go-ceph/package_test.go

13 lines
201 B
Go
Raw Normal View History

package rados
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestImports(t *testing.T) {
if assert.Equal(t, 1, 1) != true {
t.Error("Something is wrong.")
}
}