go-ceph/package_test.go

13 lines
183 B
Go
Raw Normal View History

package rados
import (
2015-02-11 21:21:05 +00:00
"github.com/stretchr/testify/assert"
"testing"
)
func TestImports(t *testing.T) {
2015-02-11 21:21:05 +00:00
if assert.Equal(t, 1, 1) != true {
t.Error("Something is wrong.")
}
}