shithub: hugo

ref: ee5a1bbf44726d062c623d3ed2772d22d562203f
dir: /helpers/hugo_test.go/

View raw version
package helpers

import (
	"github.com/stretchr/testify/assert"
	"testing"
)

func TestHugoVersion(t *testing.T) {
	assert.Equal(t, "0.15-DEV", hugoVersion(0.15, "-DEV"))
	assert.Equal(t, "0.17", hugoVersionNoSuffix(0.16+0.01))
}