1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-13 03:17:20 +01:00
gojekyll/cmd/run_test.go

13 lines
214 B
Go
Raw Normal View History

2017-07-14 01:02:30 +02:00
package cmd
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)
}