You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/book/src/cronjob-tutorial/testdata/project/controllers/suite_test.go
+8-7
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,3 @@
1
-
/*
2
-
When we created the CronJob API with `kubebuilder create api` in a [previous chapter](/cronjob-tutorial/new-api.md), Kubebuilder already did some test work for you.
3
-
Kubebuilder scaffolded a `controllers/suite_test.go` file that does the bare bones of setting up a test environment.
4
-
5
-
First, it will contain the necessary imports.
6
-
*/
7
-
8
1
/*
9
2
Copyright 2022 The Kubernetes authors.
10
3
@@ -21,6 +14,14 @@ See the License for the specific language governing permissions and
21
14
limitations under the License.
22
15
*/
23
16
// +kubebuilder:docs-gen:collapse=Apache License
17
+
18
+
/*
19
+
When we created the CronJob API with `kubebuilder create api` in a [previous chapter](/cronjob-tutorial/new-api.md), Kubebuilder already did some test work for you.
20
+
Kubebuilder scaffolded a `controllers/suite_test.go` file that does the bare bones of setting up a test environment.
0 commit comments