@@ -86,12 +86,12 @@ var _ = common.SIGDescribe("Events API", func() {
86
86
87
87
/*
88
88
Release : v1.19
89
- Testname: Event resource lifecycle
89
+ Testname: New Event resource lifecycle, testing a single event
90
90
Description: Create an event, the event MUST exist.
91
91
The event is patched with a new note, the check MUST have the update note.
92
92
The event is deleted and MUST NOT show up when listing all events.
93
93
*/
94
- ginkgo . It ("should ensure that an event can be fetched, patched, deleted, and listed" , func () {
94
+ framework . ConformanceIt ("should ensure that an event can be fetched, patched, deleted, and listed" , func () {
95
95
eventName := "event-test"
96
96
97
97
ginkgo .By ("creating a test event" )
@@ -160,7 +160,13 @@ var _ = common.SIGDescribe("Events API", func() {
160
160
framework .ExpectEqual (foundCreatedEvent , false , "should not have found test event after deletion" )
161
161
})
162
162
163
- ginkgo .It ("should delete a collection of events" , func () {
163
+ /*
164
+ Release : v1.19
165
+ Testname: New Event resource lifecycle, testing a list of events
166
+ Description: Create a list of events, the events MUST exist.
167
+ The events are deleted and MUST NOT show up when listing all events.
168
+ */
169
+ framework .ConformanceIt ("should delete a collection of events" , func () {
164
170
eventNames := []string {"test-event-1" , "test-event-2" , "test-event-3" }
165
171
166
172
ginkgo .By ("Create set of events" )
0 commit comments