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/uri_test.go

40 lines
568 B
Go

package activitystreams
import "testing"
func TestIRI_GetLink(t *testing.T) {
val := "http://example.com"
u := IRI(val)
if u.GetLink() != IRI(val) {
t.Errorf("IRI %q should equal %q", u, val)
}
}
func TestIRI_String(t *testing.T) {
val := "http://example.com"
u := IRI(val)
if u.String() != val {
t.Errorf("IRI %q should equal %q", u, val)
}
}
func TestIRI_GetID(t *testing.T) {
}
func TestIRI_GetType(t *testing.T) {
}
func TestIRI_IsLink(t *testing.T) {
}
func TestIRI_IsObject(t *testing.T) {
}
func TestIRI_UnmarshalJSON(t *testing.T) {
}