2017-07-19 22:06:43 +02:00
|
|
|
package commands
|
2017-07-13 02:40:05 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseAndRun(t *testing.T) {
|
|
|
|
err := ParseAndRun([]string{"build", "-s", "../testdata/example", "-q"})
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|