summaryrefslogtreecommitdiff
path: root/internal/cli/reset/command_test.go
blob: 00cd046eed8752570f457b41e1872eeaaf4296c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package reset_test

import (
	"testing"

	"github.com/spiral/roadrunner-binary/v2/internal/cli/reset"

	"github.com/spiral/roadrunner-plugins/v2/config"
	"github.com/stretchr/testify/assert"
)

func TestCommandProperties(t *testing.T) {
	cmd := reset.NewCommand(&config.Plugin{})

	assert.Equal(t, "reset", cmd.Use)
	assert.NotNil(t, cmd.RunE)
}

func TestExecution(t *testing.T) {
	t.Skip("Command execution is not implemented yet")
}