mirror of
https://github.com/ceph/go-ceph
synced 2024-12-13 18:06:19 +00:00
b7a3914f3b
Signed-off-by: John Mulligan <jmulligan@redhat.com>
13 lines
175 B
Go
13 lines
175 B
Go
package ceph
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestImports(t *testing.T) {
|
|
if !assert.Equal(t, 1, 1) {
|
|
t.Error("Something is wrong.")
|
|
}
|
|
}
|