We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4fb106 commit 72df7bfCopy full SHA for 72df7bf
pkg/kube/read_tests.go
@@ -31,6 +31,10 @@ func RunReadNetworkPolicyTests() {
31
policies, err := ReadNetworkPoliciesFromPath("../../networkpolicies/simple-example")
32
Expect(err).To(BeNil())
33
Expect(len(policies)).To(Equal(7))
34
+
35
+ policies, err = ReadNetworkPoliciesFromPath("../../networkpolicies/")
36
+ Expect(err).To(BeNil())
37
+ Expect(len(policies)).To(Equal(14))
38
})
39
40
// TODO test to show what happens for duplicate names
0 commit comments