92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
20 lines
320 B
Go
20 lines
320 B
Go
package entity
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCount(t *testing.T) {
|
|
m := PhotoFixtures.Pointer("Photo01")
|
|
_, keys, err := ModelValues(m, "ID", "PhotoUID")
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
result := Count(m, []string{"ID", "PhotoUID"}, keys)
|
|
|
|
assert.Equal(t, 1, result)
|
|
}
|