auth/internal/domain/profile.go
2021-10-05 00:46:54 +05:00

22 lines
334 B
Go

package domain
import "testing"
type Profile struct {
Name string
URL string
Photo string
Email string
}
func TestProfile(tb testing.TB) *Profile {
tb.Helper()
return &Profile{
Name: "Example User",
URL: "https://user.example.net/",
Photo: "https://user.example.net/photo.jpg",
Email: "user@example.net",
}
}