(t *testing.T)
| 337 | } |
| 338 | |
| 339 | func TestIsLableledWithActionFailure(t *testing.T) { |
| 340 | tNode := getNode(t, getDrainHelper(fake.NewSimpleClientset())) |
| 341 | _, err := tNode.IsLabeledWithAction(nodeName) |
| 342 | h.Assert(t, err != nil, "Failed to return error on IsLabeledWithAction failure") |
| 343 | } |
| 344 | |
| 345 | func TestUncordonIfRebootedDefaultSuccess(t *testing.T) { |
| 346 | client := fake.NewSimpleClientset() |
nothing calls this directly
no test coverage detected