package serve_test import ( "testing" "github.com/spiral/roadrunner-binary/v2/internal/cli/serve" "github.com/spiral/roadrunner-plugins/v2/config" "github.com/stretchr/testify/assert" ) func TestCommandProperties(t *testing.T) { cmd := serve.NewCommand(&config.Plugin{}) assert.Equal(t, "serve", cmd.Use) assert.NotNil(t, cmd.RunE) } func TestExecution(t *testing.T) { t.Skip("Command execution is not implemented yet") }