mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
15 lines
232 B
Go
15 lines
232 B
Go
package databag
|
|
|
|
import (
|
|
"testing"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestUpdateProfile(t *testing.T) {
|
|
// setup testing group
|
|
set, err := AddTestGroup("updateprofile")
|
|
assert.NoError(t, err)
|
|
|
|
PrintMsg(set)
|
|
}
|