mirror of
https://github.com/ceph/go-ceph
synced 2024-12-15 02:45:52 +00:00
9460b11d88
Oddly, probably a historical artifact, the .go files in the root of the go-ceph tree were named "rados". As rados is one of our sub-packages it seemed more correct to call the package "ceph". This was chosen as "go-ceph" is not a valid identifier in go and since this is already go code prefixing with "go" seems a bit redundant. Signed-off-by: John Mulligan <jmulligan@redhat.com>
13 lines
182 B
Go
13 lines
182 B
Go
package ceph
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestImports(t *testing.T) {
|
|
if assert.Equal(t, 1, 1) != true {
|
|
t.Error("Something is wrong.")
|
|
}
|
|
}
|