mirror-nourybot/pkg/api/ivr/userid_test.go

19 lines
302 B
Go
Raw Normal View History

2021-10-28 22:48:49 +02:00
package ivr
import "testing"
func TestUserid(t *testing.T) {
t.Run("returns a link to a users profile picture", func(t *testing.T) {
request := Userid("nouryqt")
response := "31437432"
got := request
want := response
if got != want {
t.Errorf("got %q, want %q", got, want)
}
})
}