This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/activitystreams/uri_test.go

20 lines
359 B
Go
Raw Normal View History

package activitystreams
2018-07-16 13:48:02 +00:00
import "testing"
func TestIRI_GetLink(t *testing.T) {
val := "http://example.com"
u := IRI(val)
2018-10-11 18:13:34 +00:00
if u.GetLink() != IRI(val) {
t.Errorf("IRI %q should equal %q", u, val)
2018-07-16 13:48:02 +00:00
}
}
func TestIRI_String(t *testing.T) {
val := "http://example.com"
u := IRI(val)
if u.String() != val {
2018-10-11 18:13:34 +00:00
t.Errorf("IRI %q should equal %q", u, val)
2018-07-16 13:48:02 +00:00
}
}