remove TestSetStatus for now
This commit is contained in:
parent
db28339ad3
commit
e51d968151
|
|
@ -328,33 +328,3 @@ func TestShouldDeleteSecret(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
func TestSetStatus(t *testing.T) {
|
|
||||||
|
|
||||||
tests := []struct {
|
|
||||||
status acidv1.PostgresStatus
|
|
||||||
outcome bool
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
status: acidv1.PostgresStatus{PostgresClusterStatus: acidv1.ClusterStatusCreating},
|
|
||||||
outcome: cl.Status.Creating(),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
status: acidv1.PostgresStatus{PostgresClusterStatus: acidv1.ClusterStatusRunning},
|
|
||||||
outcome: cl.Status.Running(),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
status: acidv1.PostgresStatus{PostgresClusterStatus: acidv1.ClusterStatusInvalid},
|
|
||||||
outcome: !cl.Status.Success(),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tt := range tests {
|
|
||||||
cl.setStatus(tt.status.PostgresClusterStatus)
|
|
||||||
if tt.outcome {
|
|
||||||
t.Errorf("Wrong status: %s", cl.Status.String())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue