mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
21 lines
333 B
Go
21 lines
333 B
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package version
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSemanticString(t *testing.T) {
|
|
v := Semantic{
|
|
Major: 1,
|
|
Minor: 2,
|
|
Patch: 3,
|
|
}
|
|
|
|
require.Equal(t, "v1.2.3", v.String())
|
|
}
|