(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestCompileUserEmail(t *testing.T) { |
| 54 | // Test with valid email |
| 55 | assert.Equal(t, "user@example.com", utils.CompileUserEmail("user@example.com", "example.com")) |
| 56 | |
| 57 | // Test with invalid email |
| 58 | assert.Equal(t, "user@example.com", utils.CompileUserEmail("user", "example.com")) |
| 59 | } |
nothing calls this directly
no test coverage detected