mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 06:34:43 +01:00
12 lines
145 B
Go
12 lines
145 B
Go
|
package pipelines
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestIsMarkdown(t *testing.T) {
|
||
|
require.False(t, false)
|
||
|
}
|