1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-03 14:37:48 +01:00
gojekyll/commands/run_test.go
2017-07-19 16:06:43 -04:00

13 lines
219 B
Go

package commands
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestParseAndRun(t *testing.T) {
err := ParseAndRun([]string{"build", "-s", "../testdata/example", "-q"})
require.NoError(t, err)
}