photoprism/internal/entity/file_json_test.go

14 lines
265 B
Go
Raw Normal View History

package entity
import "testing"
func TestFile_MarshalJSON(t *testing.T) {
if m := FileFixtures.Pointer("Video.mp4"); m == nil {
t.Fatal("must not be nil")
} else if j, err := m.MarshalJSON(); err != nil {
t.Fatal(err)
} else {
t.Logf("json: %s", j)
}
}