remove TestSetStatus for now

This commit is contained in:
Felix Kunde 2019-05-06 17:12:42 +02:00
parent db28339ad3
commit e51d968151
1 changed files with 0 additions and 30 deletions

View File

@ -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())
}
}
}
*/