1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-02 16:47:50 +01:00
gojekyll/commands/run_test.go

13 lines
219 B
Go
Raw Normal View History

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)
}