mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 05:34:50 +01:00
13 lines
213 B
Go
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)
|
|
}
|