Files
sonr/x/vault/keeper/orm_test.go
T

15 lines
186 B
Go
Raw Normal View History

2024-09-25 19:45:28 -04:00
package keeper_test
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestORM(t *testing.T) {
f := SetupTest(t)
dt := f.k.OrmDB.DWNTable()
2024-09-29 14:40:36 -04:00
require.NotNil(t, dt)
2024-09-25 19:45:28 -04:00
}