change TestGetProfile profile and data
This commit is contained in:
parent
1c49fea3ef
commit
b864ad2b4e
1 changed files with 11 additions and 10 deletions
|
|
@ -9,20 +9,21 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetProfile(t *testing.T) {
|
func TestGetProfile(t *testing.T) {
|
||||||
joined := time.Unix(1245860880, 0)
|
loc := time.FixedZone("UTC", 0)
|
||||||
|
joined := time.Date(2007,02, 20,6,35,0,0, loc)
|
||||||
sample := Profile{
|
sample := Profile{
|
||||||
Avatar: "https://pbs.twimg.com/profile_images/1176439369596624896/Fkqe6qVj_400x400.jpg",
|
Avatar: "https://pbs.twimg.com/profile_images/1111729635610382336/_65QFl7B_400x400.png",
|
||||||
Biography: "Kenneth Reitz, n: a garden–variety self–referential loop. Not available for purchase. Made in USA.",
|
Biography: "What’s happening?!",
|
||||||
Birthday: "1988",
|
Birthday: "March 21",
|
||||||
Joined: &joined,
|
Joined: &joined,
|
||||||
Location: "Eden, Earth, Milky Way",
|
Location: "Everywhere",
|
||||||
Name: "☿ Kenneth Reitz",
|
Name: "Twitter",
|
||||||
URL: "https://twitter.com/kennethreitz",
|
URL: "https://twitter.com/Twitter",
|
||||||
Username: "kennethreitz",
|
Username: "Twitter",
|
||||||
Website: "https://kennethreitz.org/values",
|
Website: "https://about.twitter.com/",
|
||||||
}
|
}
|
||||||
|
|
||||||
profile, err := GetProfile("kennethreitz")
|
profile, err := GetProfile("Twitter")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue