mirror of
https://github.com/danog/gojekyll.git
synced 2025-01-06 01:48:16 +01:00
13 lines
219 B
Go
13 lines
219 B
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestParseAndRun(t *testing.T) {
|
||
|
err := ParseAndRun([]string{"build", "-s", "../testdata/example", "-q"})
|
||
|
require.NoError(t, err)
|
||
|
}
|