(t *testing.T)
| 93 | } |
| 94 | |
| 95 | func TestEmailEnabledByDefault(t *testing.T) { |
| 96 | api, _, err := setupAPIForTest() |
| 97 | require.NoError(t, err) |
| 98 | |
| 99 | require.False(t, api.config.External.Email.Disabled) |
| 100 | } |
| 101 | |
| 102 | const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 103 |
nothing calls this directly
no test coverage detected
searching dependent graphs…