(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestDataStorage(t *testing.T) { |
| 46 | cluster := new(v1beta1.PostgresCluster) |
| 47 | cluster.Spec.PostgresVersion = rand.Int32N(20) |
| 48 | |
| 49 | assert.Equal(t, DataStorage(cluster), "/pgdata") |
| 50 | } |
| 51 | |
| 52 | func TestLogRotation(t *testing.T) { |
| 53 | t.Parallel() |
nothing calls this directly
no test coverage detected