Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9565259dc1
|
||
|
|
f05a513926
|
@@ -1,11 +1,5 @@
|
|||||||
package user
|
package user
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
type UserProfile struct {
|
type UserProfile struct {
|
||||||
Usr *User `json:"user"`
|
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")
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
package user
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestInitUserProfile(t *testing.T) {
|
||||||
|
usr := User{Username: "Bob", PhoneNumber: "+12224572351", 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