a090770b73
I know this is a huge commit, but I can't be bothered to check this in part by part.
29 lines
701 B
Go
29 lines
701 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestDomainModeratorNewBasics(t *testing.T) {
|
|
failTestOnError(t, setupTestEnv())
|
|
|
|
if err := domainModeratorNew("example.com", "test@example.com"); err != nil {
|
|
t.Errorf("unexpected error creating new domain moderator: %v", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
func TestDomainModeratorNewEmpty(t *testing.T) {
|
|
failTestOnError(t, setupTestEnv())
|
|
|
|
if err := domainModeratorNew("example.com", ""); err == nil {
|
|
t.Errorf("expected error not found when creating new moderator with empty email")
|
|
return
|
|
}
|
|
|
|
if err := domainModeratorNew("", "test@example.com"); err == nil {
|
|
t.Errorf("expected error not found when creating new moderator with empty domain")
|
|
return
|
|
}
|
|
}
|