photoprism/internal/commands/show_config_yaml_test.go

27 lines
481 B
Go
Raw Normal View History

2023-07-20 14:42:01 +00:00
package commands
import (
2023-07-20 17:17:45 +00:00
"testing"
2023-07-20 14:42:01 +00:00
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/pkg/capture"
"github.com/stretchr/testify/assert"
)
func TestShowConfigYamlCommand(t *testing.T) {
var err error
ctx := config.CliTestContext()
output := capture.Output(func() {
err = ShowConfigYamlCommand.Run(ctx)
})
if err != nil {
t.Fatal(err)
}
assert.Contains(t, output, "ImportPath")
assert.Contains(t, output, "--sidecar-path")
}