(t *testing.T)
| 21 | ) |
| 22 | |
| 23 | func TestDataVolumeMount(t *testing.T) { |
| 24 | mount := DataVolumeMount() |
| 25 | |
| 26 | assert.DeepEqual(t, mount, corev1.VolumeMount{ |
| 27 | Name: "postgres-data", |
| 28 | MountPath: "/pgdata", |
| 29 | ReadOnly: false, |
| 30 | }) |
| 31 | } |
| 32 | |
| 33 | func TestWALVolumeMount(t *testing.T) { |
| 34 | mount := WALVolumeMount() |
nothing calls this directly
no test coverage detected