apirunner 0.5.0 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,43 +0,0 @@
1
- ---
2
- - name: 'Create new User'
3
- iterations: 10000
4
- priority: 4
5
- request:
6
- headers:
7
- Content-Type: 'application/json'
8
- path: '/users/duffyduck@@'
9
- method: 'PUT'
10
- body:
11
- watchlist:
12
- - m1035
13
- - m2087
14
- blacklist:
15
- - m1554
16
- - m2981
17
- skiplist:
18
- - m1590
19
- - m1056
20
- ratings:
21
- m10506: 1.0
22
- m462: 2.0
23
- m5968: 3.0
24
- m7511: 4.0
25
- m11995: 5.0
26
- m2274: 1.0
27
- m25796: 2.0
28
- m9698: 3.0
29
- m6289: 4.0
30
- m4350: 5.0
31
- m10735: 1.0
32
- m3492: 2.0
33
- m645: 3.0
34
- m24772: 4.0
35
- m1880: 5.0
36
- m6434: 1.0
37
- m6538: 2.0
38
- m10009: 3.0
39
- m5900: 4.0
40
- m22668: 5.0
41
- expires_at: 2011-09-09T22:41:50+00:00
42
- response_expectation:
43
- status_code: 201
@@ -1,78 +0,0 @@
1
- ---
2
- - name: 'Delete Basich User'
3
- request:
4
- path: '/users/duffybasic'
5
- method: 'DELETE'
6
- body: {}
7
- response_expectation:
8
- status_code: 202
9
- - name: 'Delete User 1'
10
- request:
11
- path: '/users/duffyduck'
12
- method: 'DELETE'
13
- body: {}
14
- response_expectation:
15
- status_code: 202
16
- - name: 'User 1 should be nonexistant afterwards'
17
- request:
18
- path: '/users/duffyduck'
19
- method: 'GET'
20
- body: {}
21
- response_expectation:
22
- status_code: 404
23
- - name: 'Delete User 2'
24
- request:
25
- path: '/users/duffyduck2'
26
- method: 'DELETE'
27
- body: {}
28
- response_expectation:
29
- status_code: 202
30
- - name: 'User 2 should be nonexistant afterwards'
31
- request:
32
- path: '/users/duffyduck2'
33
- method: 'GET'
34
- body: {}
35
- response_expectation:
36
- status_code: 404
37
- - name: 'Delete User 3'
38
- request:
39
- path: '/users/duffyduck3'
40
- method: 'DELETE'
41
- body: {}
42
- response_expectation:
43
- status_code: 202
44
- - name: 'User 3 should be nonexistant afterwards'
45
- request:
46
- path: '/users/duffyduck3'
47
- method: 'GET'
48
- body: {}
49
- response_expectation:
50
- status_code: 404
51
- - name: 'Delete adult user duffydad'
52
- request:
53
- path: '/users/duffydad'
54
- method: 'DELETE'
55
- body: {}
56
- response_expectation:
57
- status_code: 202
58
- - name: 'Adult user duffydad should be nonexistant afterwards'
59
- request:
60
- path: '/users/duffydad'
61
- method: 'GET'
62
- body: {}
63
- response_expectation:
64
- status_code: 404
65
- - name: 'Delete non-adult user duffykid'
66
- request:
67
- path: '/users/duffykid'
68
- method: 'DELETE'
69
- body: {}
70
- response_expectation:
71
- status_code: 202
72
- - name: 'Non-Adult duffykid user should be nonexistant afterwards'
73
- request:
74
- path: '/users/duffykid'
75
- method: 'GET'
76
- body: {}
77
- response_expectation:
78
- status_code: 404