mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 08:47:12 +08:00
21 lines
386 B
Go
21 lines
386 B
Go
package commands
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestShowVideoSizesCommand(t *testing.T) {
|
|
// Run command with test context.
|
|
output, err := RunWithTestContext(ShowVideoSizesCommand, []string{})
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
assert.Contains(t, output, "3840")
|
|
assert.Contains(t, output, "7680")
|
|
assert.Contains(t, output, "4K Ultra HD")
|
|
}
|