1
0
mirror of https://github.com/danog/gojekyll.git synced 2025-01-23 05:01:14 +01:00
gojekyll/commands/run_test.go

13 lines
213 B
Go
Raw Normal View History

2017-07-19 16:06:43 -04:00
package commands
2017-07-12 20:40:05 -04:00
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestParseAndRun(t *testing.T) {
2017-07-26 10:01:26 -04:00
err := ParseAndRun([]string{"build", "-s", "testdata/site", "-q"})
2017-07-12 20:40:05 -04:00
require.NoError(t, err)
}