jx/internal/signature/ident_test.go

15 lines
238 B
Go
Raw Normal View History

2024-04-19 07:52:10 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package signature
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestNewIdent(t *testing.T) {
i := NewIdent()
assert.NotNil(t, i)
}