![Kanwar Saad Bin Liaqat](/assets/img/avatar_default.png)
This commit implements redfish remote direct subcommand under bootstrap. Change-Id: Idf97445f6fa59a77145eae1edaa15b1d22723f19 Signed-off-by: Kanwar Saad Bin Liaqat <kanwar.sbl@gmail.com>
21 lines
344 B
Go
21 lines
344 B
Go
package bootstrap
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"opendev.org/airship/airshipctl/testutil"
|
|
)
|
|
|
|
func TestRemoteDirect(t *testing.T) {
|
|
tests := []*testutil.CmdTest{
|
|
{
|
|
Name: "remotedirect-cmd-with-help",
|
|
CmdLine: "remotedirect --help",
|
|
Cmd: NewRemoteDirectCommand(nil),
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
testutil.RunTest(t, tt)
|
|
}
|
|
}
|