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