diff --git a/cli/identity_new_test.go b/cli/identity_new_test.go new file mode 100644 index 0000000000..cb4367abe3 --- /dev/null +++ b/cli/identity_new_test.go @@ -0,0 +1,26 @@ +// Copyright 2024 Democratized Data Foundation +// +// Use of this software is governed by the Business Source License +// included in the file licenses/BSL.txt. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0, included in the file +// licenses/APL.txt. + +package cli + +import ( + "testing" + + "github.com/stretchr/testify/require" +) + +func TestNewIdentityGeneration(t *testing.T) { + cmd := NewDefraCommand() + + cmd.SetArgs([]string{"identity", "new"}) + + err := cmd.Execute() + require.NoError(t, err) +}