Skip to content

Commit

Permalink
PR(TEST): Add a test for the cli command
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzadlone committed Jun 24, 2024
1 parent 942d3bb commit 09b2c0d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions cli/identity_new_test.go
Original file line number Diff line number Diff line change
@@ -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)
}

0 comments on commit 09b2c0d

Please sign in to comment.