blob: 8aef0ff73120fa83830c5177bd873a3fc6bf0e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package serve_test
import (
"testing"
"github.com/roadrunner-server/roadrunner/v2/internal/cli/serve"
"github.com/roadrunner-server/config/v2"
"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")
}
|