1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 05:34:50 +01:00
gojekyll/commands/run_test.go
2017-07-26 10:17:53 -04:00

13 lines
213 B
Go

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