Wire up the new ssh kitten into the python ssh kitten tests

This commit is contained in:
Kovid Goyal
2023-02-24 16:06:12 +05:30
parent e4002b5691
commit 3f417b26b2
3 changed files with 77 additions and 26 deletions

View File

@@ -6,6 +6,7 @@ import (
"fmt"
"kitty/tools/cli"
"kitty/tools/cmd/ssh"
"kitty/tools/utils/shm"
)
@@ -17,4 +18,5 @@ func EntryPoint(root *cli.Command) {
Hidden: true,
})
shm.TestEntryPoint(root)
ssh.TestEntryPoint(root)
}