Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestInvalidDryRun (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    			if errs := ValidateDryRun(field.NewPath("dryRun"), test); len(errs) != 0 {
    				t.Errorf("%v should be a valid dry-run value: %v", test, errs)
    			}
    		})
    	}
    }
    
    func TestInvalidDryRun(t *testing.T) {
    	tests := [][]string{
    		{"False"},
    		{"All", "False"},
    	}
    
    	for _, test := range tests {
    		t.Run(fmt.Sprintf("%v", test), func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top