v4/interactions/cmd_helloworld_test.go
2025-03-25 21:26:24 -07:00

16 lines
301 B
Go

package interactions_test
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCmdHelloWorld(t *testing.T) {
i, _, _ := makeInteractions(t)
ix := mkInteraction("hello-world")
ir, err := i.CmdHelloWorld(ix)
assert.Nil(t, err)
assert.Equal(t, "Hello world!", ir.Data.Content)
}