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/place_test.go
Marius Orcsik fd4fc76679
Added UnmarshalJSON for Place
Changed some properties to float64 and int64 types
2019-12-03 13:23:44 +01:00

44 lines
636 B
Go

package activitystreams
import "testing"
func TestPlace_Recipients(t *testing.T) {
t.Skipf("TODO")
}
func TestToPlace(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_GetID(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_GetLink(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_GetType(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_IsCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_IsLink(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_IsObject(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_UnmarshalJSON(t *testing.T) {
t.Skipf("TODO")
}
func TestPlace_Clean(t *testing.T) {
t.Skipf("TODO")
}