Files
photoprism/internal/commands/show_video_sizes_test.go
2024-12-09 15:11:39 +01:00

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