jx/internal/signature/ident_test.go
Matthew Rich a6ea2e8c8c
Some checks failed
Lint / golangci-lint (push) Failing after 9m49s
Declarative Tests / test (push) Failing after 1m15s
add cli sub commands
2024-04-19 00:52:10 -07:00

15 lines
238 B
Go

// 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)
}