Created test file
This commit is contained in:
@@ -1,11 +1,5 @@
|
||||
package user
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
|
||||
type UserProfile struct {
|
||||
Usr *User `json:"user"`
|
||||
@@ -29,12 +23,3 @@ func InitUserProfile(usr *User) (usrProfile *UserProfile, done bool) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestInitUserProfile(t *testing.T) {
|
||||
usr := User{}
|
||||
usr.Username = "Bob"
|
||||
usr.PhoneNumber = "+12224572351"
|
||||
usr.Password = "TheNight!"
|
||||
profile, done := InitUserProfile(&usr)
|
||||
assert.Equal(t, done, true, "Error")
|
||||
assert.NotEmpty(t, profile, "UserProfile is empty")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user