summaryrefslogtreecommitdiffstats
path: root/tui/exec_test.go
blob: 72393ae66d4dff05f96895eaf1146db9c1ec9cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package tui

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestExecute(t *testing.T) {
	err := Execute("true", []string{}, []string{})

	assert.Nil(t, err)
}