(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestAuthFileContents(t *testing.T) { |
| 36 | t.Parallel() |
| 37 | |
| 38 | password := `very"random` |
| 39 | data := authFileContents(password) |
| 40 | assert.Equal(t, string(data), `"_crunchypgbouncer" "very""random"`+"\n") |
| 41 | } |
| 42 | |
| 43 | func TestClusterINI(t *testing.T) { |
| 44 | ctx := context.Background() |
nothing calls this directly
no test coverage detected