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

13 lines
213 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) {
2017-07-26 16:01:26 +02:00
err := ParseAndRun([]string{"build", "-s", "testdata/site", "-q"})
2017-07-13 02:40:05 +02:00
require.NoError(t, err)
}