-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnegative.pact.json
55 lines (55 loc) · 1.09 KB
/
negative.pact.json
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
46
47
48
49
50
51
52
53
54
55
{
"consumer": {
"name": "negative-consumer"
},
"provider": {
"name": "negative-provider"
},
"interactions": [
{
"description": "a request to get a Dog",
"providerState": "there is a dog with an id of 1",
"request": {
"method": "GET",
"path": "/animals/1"
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"name": "Rover",
"owner": "Drover",
"bark": "dry"
}
}
},
{
"description": "a request to get a Dog",
"providerState": "there is no dog with an id of 1",
"request": {
"method": "GET",
"path": "/animals/1"
},
"response": {
"status": 404
}
},
{
"description": "a request to get a Dog with an invalid property",
"request": {
"method": "GET",
"path": "/animals/dog"
},
"response": {
"status": 400
}
}
],
"metadata": {
"pactSpecification": {
"version": "2.0.0"
}
}
}