Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c555f2f commit f3e9964Copy full SHA for f3e9964
cli/jail_test.go
@@ -0,0 +1,14 @@
1
+package cli_test
2
+
3
+import (
4
+ "testing"
5
6
+ "github.com/coder/coder/v2/cli/clitest"
7
+)
8
9
+// Actually testing the functionality of coder/jail takes place in the
10
+// coder/jail repo, since it's a dependency of coder.
11
+// Here we want to test basically that integrating it as a subcommand doesn't break anything.
12
+func TestJailSubcommand(t *testing.T) {
13
+ _, _ = clitest.New(t, "jail", "--help")
14
+}
0 commit comments