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 2836a40 commit ce22c4bCopy full SHA for ce22c4b
ks/ks.go
@@ -0,0 +1,9 @@
1
+package ks
2
+
3
+func Validate(ks string) (bool, error) {
4
+ panic("not implemented!")
5
+}
6
7
+func Generate() string {
8
9
ks/ks_test.go
@@ -0,0 +1,20 @@
+import (
+ "testing"
+ "github.com/stretchr/testify/require"
+)
+func Test_Validete(t *testing.T) {
10
+ require.Panics(t, func() {
11
+ _, err := Validate("")
12
+ require.NoError(t, err)
13
+ })
14
15
16
+func Test_Generate(t *testing.T) {
17
18
+ Generate()
19
20
0 commit comments