test: add test for root package

Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
This commit is contained in:
Noah Watkins 2015-01-12 22:15:42 -08:00
parent 44c15bf439
commit 36974cdb67
1 changed files with 13 additions and 0 deletions

13
package_test.go Normal file
View File

@ -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.")
}
}