mirror of
https://github.com/taigrr/bitcask
synced 2025-01-18 04:03:17 -08:00
16 lines
241 B
Go
16 lines
241 B
Go
package bitcask
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFullVersion(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
expected := fmt.Sprintf("%s@%s", Version, Commit)
|
|
assert.Equal(expected, FullVersion())
|
|
}
|