mirror-nourybot/pkg/api/ivr/whois_test.go
2021-12-19 03:03:45 +01:00

16 lines
280 B
Go

package ivr
import "testing"
func TestWhois(t *testing.T) {
t.Run("returns a link to a users profile picture", func(t *testing.T) {
request := Whois("forsen")
got := request
want := Whois("forsen")
if got != want {
t.Errorf("got %q, want %q", got, want)
}
})
}