(t *testing.T)
| 173 | } |
| 174 | |
| 175 | func TestVerifyDomainNotFound(t *testing.T) { |
| 176 | srv := testServer(t) |
| 177 | code, _ := postJSON(t, srv.URL+"/v1/domains/unknown.com/verify", "good", nil) |
| 178 | if code != 404 { |
| 179 | t.Fatalf("want 404, got %d", code) |
| 180 | } |
| 181 | } |
nothing calls this directly
no test coverage detected