mirror of https://github.com/ceph/go-ceph
test: add test for root package
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
This commit is contained in:
parent
44c15bf439
commit
36974cdb67
|
@ -0,0 +1,13 @@
|
|||
package rados
|
||||
|
||||
import (
|
||||
"github.com/noahdesu/go-rados/rados"
|
||||
"github.com/noahdesu/go-rados/rbd"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestImports(t *testing.T) {
|
||||
if assert.Equal(t, 1, 1) != true {
|
||||
t.Error("Something is wrong.")
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue