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.
2 parents b36d955 + b294f5f commit 1330df9Copy full SHA for 1330df9
.gitignore
@@ -14,3 +14,6 @@ cmd/csi-sanity/csi-sanity
14
15
# JetBrains GoLand
16
.idea
17
+
18
+# Vim
19
+*.swp
pkg/sanity/README.md
@@ -39,21 +39,21 @@ var _ = Describe("MyCSIDriver", func () {
39
Context("Config A", func () {
40
var config &sanity.Config
41
42
- BeforeEach() {
43
- ... setup driver and config...
44
- }
+ BeforeEach(func() {
+ //... setup driver and config...
+ })
45
46
- AfterEach() {
47
- ...tear down driver...
48
+ AfterEach(func() {
+ //...tear down driver...
49
50
Describe("CSI sanity", func() {
51
sanity.GinkgoTest(config)
52
})
53
54
55
Context("Config B", func () {
56
- ...
+ // other configs
57
58
59
```
0 commit comments