-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresponses_test.go
45 lines (39 loc) · 967 Bytes
/
responses_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package rest
import (
"testing"
)
func TestInternalServerErrorResponse(t *testing.T) {
status, _ := InternalServerErrorResponse()
expected := 500
if status != expected {
t.Errorf("Error, expected %d got %d", expected, status)
}
}
func TestCreatedResponse(t *testing.T) {
status, _ := CreatedResponse()
expected := 201
if status != expected {
t.Errorf("Error, expected %d got %d", expected, status)
}
}
func TestBadRequestResponse(t *testing.T) {
status, _ := BadRequestResponse()
expected := 400
if status != expected {
t.Errorf("Error, expected %d got %d", expected, status)
}
}
func TestNoContentResponse(t *testing.T) {
status, _ := NoContentResponse()
expected := 204
if status != expected {
t.Errorf("Error, expected %d got %d", expected, status)
}
}
func TestNotFoundResponse(t *testing.T) {
status, _ := NotFoundResponse()
expected := 404
if status != expected {
t.Errorf("Error, expected %d got %d", expected, status)
}
}