photoprism/internal/entity/file_json_test.go
2021-09-02 11:12:42 +02:00

14 lines
265 B
Go

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)
}
}