1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 04:24:56 +01:00
gojekyll/sites/site_test.go

14 lines
210 B
Go
Raw Normal View History

package sites
2017-06-15 13:19:49 +02:00
import (
"testing"
"github.com/stretchr/testify/require"
2017-06-15 13:19:49 +02:00
)
2017-06-16 01:49:04 +02:00
func TestIsMarkdown(t *testing.T) {
2017-06-24 19:30:01 +02:00
s := NewSite()
require.Equal(t, "", s.PathPrefix())
require.False(t, s.KeepFile("random"))
2017-06-15 13:19:49 +02:00
}