1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

Refactor Hugo version

Put version handling into the helpers package so it can be used by many,
and split version and suffix to make it possible to calculate the next Hugo version.
This commit is contained in:
bep
2015-03-18 12:23:13 +01:00
parent 49f20bbc9b
commit 3273fce044
4 changed files with 64 additions and 6 deletions

11
helpers/hugo_test.go Normal file
View File

@@ -0,0 +1,11 @@
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))
}