github.com/aeternity/aepp-sdk-go/v4@v4.0.1/cmd/inspect_test.go (about)

     1  package cmd
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/spf13/cobra"
     7  )
     8  
     9  func TestInspect(t *testing.T) {
    10  	setConfigTestParams()
    11  	emptyCmd := cobra.Command{}
    12  	err := inspectFunc(&emptyCmd, []string{"ak_2a1j2Mk9YSmC1gioUq4PWRm3bsv887MbuRVwyv4KaUGoR1eiKi"})
    13  	if err != nil {
    14  		t.Error(err)
    15  	}
    16  }