http_stub 0.17.0 → 0.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/lib/http_stub.rb +2 -0
- data/lib/http_stub/configurer.rb +8 -0
- data/lib/http_stub/configurer/dsl/endpoint_template.rb +26 -0
- data/lib/http_stub/configurer/dsl/server.rb +12 -0
- data/lib/http_stub/configurer/dsl/stub_builder.rb +14 -0
- data/lib/http_stub/configurer/dsl/stub_builder_producer.rb +1 -1
- data/lib/http_stub/configurer/part.rb +19 -0
- data/lib/http_stub/version.rb +1 -1
- data/spec/acceptance/configurer_part_spec.rb +66 -0
- data/spec/acceptance/endpoint_template_spec.rb +54 -0
- data/spec/lib/http_stub/configurer/dsl/endpoint_template_spec.rb +163 -0
- data/spec/lib/http_stub/configurer/dsl/scenario_builder_spec.rb +7 -5
- data/spec/lib/http_stub/configurer/dsl/server_spec.rb +114 -7
- data/spec/lib/http_stub/configurer/dsl/stub_builder_producer_spec.rb +9 -29
- data/spec/lib/http_stub/configurer/dsl/stub_builder_spec.rb +263 -0
- data/spec/lib/http_stub/configurer/part_spec.rb +69 -0
- data/spec/spec_helper.rb +3 -1
- metadata +290 -280
@@ -0,0 +1,69 @@
|
|
1
|
+
describe HttpStub::Configurer::Part do
|
2
|
+
|
3
|
+
let(:configurer) do
|
4
|
+
Class.new.tap { |configurer| configurer.send(:include, HttpStub::Configurer) }
|
5
|
+
end
|
6
|
+
|
7
|
+
let(:part_class) do
|
8
|
+
Class.new.tap { |part_class| part_class.send(:include, HttpStub::Configurer::Part) }
|
9
|
+
end
|
10
|
+
|
11
|
+
let(:part) { part_class.new }
|
12
|
+
|
13
|
+
describe "#configure" do
|
14
|
+
|
15
|
+
subject { part.configure(configurer) }
|
16
|
+
|
17
|
+
shared_context "expect configure entity methods to be automatically invoke" do
|
18
|
+
|
19
|
+
before(:example) do
|
20
|
+
configure_method_names.each do |method_name|
|
21
|
+
part_class.send(:define_method, method_name) do
|
22
|
+
# Intentionally blank
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
it "invokes the configure methods" do
|
28
|
+
configure_method_names.each { |method_name| expect(part).to receive(method_name) }
|
29
|
+
|
30
|
+
subject
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
context "when the part has configure stubs methods" do
|
36
|
+
|
37
|
+
let(:configure_method_names) { (1..3).map { |i| "configure_resource_#{i}_stubs".to_sym } }
|
38
|
+
|
39
|
+
include_context "expect configure entity methods to be automatically invoke"
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
context "when the part has configure stub methods" do
|
44
|
+
|
45
|
+
let(:configure_method_names) { (1..3).map { |i| "configure_resource_#{i}_stub".to_sym } }
|
46
|
+
|
47
|
+
include_context "expect configure entity methods to be automatically invoke"
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
context "when the part has configure scenarios methods" do
|
52
|
+
|
53
|
+
let(:configure_method_names) { (1..3).map { |i| "configure_resource_#{i}_scenarios".to_sym } }
|
54
|
+
|
55
|
+
include_context "expect configure entity methods to be automatically invoke"
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
context "when the part has configure scenario methods" do
|
60
|
+
|
61
|
+
let(:configure_method_names) { (1..3).map { |i| "configure_resource_#{i}_scenario".to_sym } }
|
62
|
+
|
63
|
+
include_context "expect configure entity methods to be automatically invoke"
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -7,7 +7,7 @@ SimpleCov.start do
|
|
7
7
|
add_filter "/spec/"
|
8
8
|
add_filter "/vendor/"
|
9
9
|
|
10
|
-
minimum_coverage 99.
|
10
|
+
minimum_coverage 99.67
|
11
11
|
refuse_coverage_drop
|
12
12
|
end if ENV["coverage"]
|
13
13
|
|
@@ -26,6 +26,8 @@ require_relative '../examples/configurer_with_stub_triggers'
|
|
26
26
|
require_relative '../examples/configurer_with_file_responses'
|
27
27
|
require_relative '../examples/configurer_with_stub_request_body'
|
28
28
|
require_relative '../examples/configurer_with_regex_request_body'
|
29
|
+
require_relative '../examples/configurer_with_parts'
|
30
|
+
require_relative '../examples/configurer_with_endpoint_template'
|
29
31
|
|
30
32
|
HttpStub::Server::Daemon.log_dir = ::File.expand_path('../../tmp/log', __FILE__)
|
31
33
|
HttpStub::Server::Daemon.pid_dir = ::File.expand_path('../../tmp/pids', __FILE__)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: http_stub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Ueckerman
|
@@ -9,258 +9,258 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-06-
|
12
|
+
date: 2015-06-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - ~>
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '10.4'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - ~>
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: '10.4'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: sinatra
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- - ~>
|
32
|
+
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
34
|
version: '1.4'
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- - ~>
|
39
|
+
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '1.4'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: sinatra-partial
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - ~>
|
46
|
+
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '0.4'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - ~>
|
53
|
+
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '0.4'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: multipart-post
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
|
-
- - ~>
|
60
|
+
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: '2.0'
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - ~>
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '2.0'
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: http_server_manager
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
|
-
- - ~>
|
74
|
+
- - "~>"
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0.4'
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- - ~>
|
81
|
+
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: '0.4'
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
85
|
name: json-schema
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- - ~>
|
88
|
+
- - "~>"
|
89
89
|
- !ruby/object:Gem::Version
|
90
90
|
version: '2.5'
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- - ~>
|
95
|
+
- - "~>"
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: '2.5'
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: activesupport
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
101
101
|
requirements:
|
102
|
-
- - ~>
|
102
|
+
- - "~>"
|
103
103
|
- !ruby/object:Gem::Version
|
104
104
|
version: '4.2'
|
105
105
|
type: :runtime
|
106
106
|
prerelease: false
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
|
-
- - ~>
|
109
|
+
- - "~>"
|
110
110
|
- !ruby/object:Gem::Version
|
111
111
|
version: '4.2'
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
113
|
name: haml
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
|
-
- - ~>
|
116
|
+
- - "~>"
|
117
117
|
- !ruby/object:Gem::Version
|
118
118
|
version: '4.0'
|
119
119
|
type: :runtime
|
120
120
|
prerelease: false
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
122
122
|
requirements:
|
123
|
-
- - ~>
|
123
|
+
- - "~>"
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '4.0'
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
127
|
name: sass
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|
129
129
|
requirements:
|
130
|
-
- - ~>
|
130
|
+
- - "~>"
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: '3.4'
|
133
133
|
type: :runtime
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
|
-
- - ~>
|
137
|
+
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
139
|
version: '3.4'
|
140
140
|
- !ruby/object:Gem::Dependency
|
141
141
|
name: travis-lint
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
|
-
- - ~>
|
144
|
+
- - "~>"
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '2.0'
|
147
147
|
type: :development
|
148
148
|
prerelease: false
|
149
149
|
version_requirements: !ruby/object:Gem::Requirement
|
150
150
|
requirements:
|
151
|
-
- - ~>
|
151
|
+
- - "~>"
|
152
152
|
- !ruby/object:Gem::Version
|
153
153
|
version: '2.0'
|
154
154
|
- !ruby/object:Gem::Dependency
|
155
155
|
name: metric_fu
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|
157
157
|
requirements:
|
158
|
-
- - ~>
|
158
|
+
- - "~>"
|
159
159
|
- !ruby/object:Gem::Version
|
160
|
-
version: '4.
|
160
|
+
version: '4.12'
|
161
161
|
type: :development
|
162
162
|
prerelease: false
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
164
164
|
requirements:
|
165
|
-
- - ~>
|
165
|
+
- - "~>"
|
166
166
|
- !ruby/object:Gem::Version
|
167
|
-
version: '4.
|
167
|
+
version: '4.12'
|
168
168
|
- !ruby/object:Gem::Dependency
|
169
169
|
name: rspec
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
171
171
|
requirements:
|
172
|
-
- - ~>
|
172
|
+
- - "~>"
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '3.3'
|
175
175
|
type: :development
|
176
176
|
prerelease: false
|
177
177
|
version_requirements: !ruby/object:Gem::Requirement
|
178
178
|
requirements:
|
179
|
-
- - ~>
|
179
|
+
- - "~>"
|
180
180
|
- !ruby/object:Gem::Version
|
181
181
|
version: '3.3'
|
182
182
|
- !ruby/object:Gem::Dependency
|
183
183
|
name: simplecov
|
184
184
|
requirement: !ruby/object:Gem::Requirement
|
185
185
|
requirements:
|
186
|
-
- - ~>
|
186
|
+
- - "~>"
|
187
187
|
- !ruby/object:Gem::Version
|
188
188
|
version: '0.10'
|
189
189
|
type: :development
|
190
190
|
prerelease: false
|
191
191
|
version_requirements: !ruby/object:Gem::Requirement
|
192
192
|
requirements:
|
193
|
-
- - ~>
|
193
|
+
- - "~>"
|
194
194
|
- !ruby/object:Gem::Version
|
195
195
|
version: '0.10'
|
196
196
|
- !ruby/object:Gem::Dependency
|
197
197
|
name: rack-test
|
198
198
|
requirement: !ruby/object:Gem::Requirement
|
199
199
|
requirements:
|
200
|
-
- - ~>
|
200
|
+
- - "~>"
|
201
201
|
- !ruby/object:Gem::Version
|
202
202
|
version: '0.6'
|
203
203
|
type: :development
|
204
204
|
prerelease: false
|
205
205
|
version_requirements: !ruby/object:Gem::Requirement
|
206
206
|
requirements:
|
207
|
-
- - ~>
|
207
|
+
- - "~>"
|
208
208
|
- !ruby/object:Gem::Version
|
209
209
|
version: '0.6'
|
210
210
|
- !ruby/object:Gem::Dependency
|
211
211
|
name: json
|
212
212
|
requirement: !ruby/object:Gem::Requirement
|
213
213
|
requirements:
|
214
|
-
- - ~>
|
214
|
+
- - "~>"
|
215
215
|
- !ruby/object:Gem::Version
|
216
216
|
version: '1.8'
|
217
217
|
type: :development
|
218
218
|
prerelease: false
|
219
219
|
version_requirements: !ruby/object:Gem::Requirement
|
220
220
|
requirements:
|
221
|
-
- - ~>
|
221
|
+
- - "~>"
|
222
222
|
- !ruby/object:Gem::Version
|
223
223
|
version: '1.8'
|
224
224
|
- !ruby/object:Gem::Dependency
|
225
225
|
name: nokogiri
|
226
226
|
requirement: !ruby/object:Gem::Requirement
|
227
227
|
requirements:
|
228
|
-
- - ~>
|
228
|
+
- - "~>"
|
229
229
|
- !ruby/object:Gem::Version
|
230
230
|
version: '1.6'
|
231
231
|
type: :development
|
232
232
|
prerelease: false
|
233
233
|
version_requirements: !ruby/object:Gem::Requirement
|
234
234
|
requirements:
|
235
|
-
- - ~>
|
235
|
+
- - "~>"
|
236
236
|
- !ruby/object:Gem::Version
|
237
237
|
version: '1.6'
|
238
238
|
- !ruby/object:Gem::Dependency
|
239
239
|
name: httparty
|
240
240
|
requirement: !ruby/object:Gem::Requirement
|
241
241
|
requirements:
|
242
|
-
- - ~>
|
242
|
+
- - "~>"
|
243
243
|
- !ruby/object:Gem::Version
|
244
244
|
version: '0.13'
|
245
245
|
type: :development
|
246
246
|
prerelease: false
|
247
247
|
version_requirements: !ruby/object:Gem::Requirement
|
248
248
|
requirements:
|
249
|
-
- - ~>
|
249
|
+
- - "~>"
|
250
250
|
- !ruby/object:Gem::Version
|
251
251
|
version: '0.13'
|
252
252
|
- !ruby/object:Gem::Dependency
|
253
253
|
name: wait_until
|
254
254
|
requirement: !ruby/object:Gem::Requirement
|
255
255
|
requirements:
|
256
|
-
- - ~>
|
256
|
+
- - "~>"
|
257
257
|
- !ruby/object:Gem::Version
|
258
258
|
version: '0.1'
|
259
259
|
type: :development
|
260
260
|
prerelease: false
|
261
261
|
version_requirements: !ruby/object:Gem::Requirement
|
262
262
|
requirements:
|
263
|
-
- - ~>
|
263
|
+
- - "~>"
|
264
264
|
- !ruby/object:Gem::Version
|
265
265
|
version: '0.1'
|
266
266
|
description: fakeweb for a HTTP server, informing it to stub / fake responses
|
@@ -269,162 +269,168 @@ executables: []
|
|
269
269
|
extensions: []
|
270
270
|
extra_rdoc_files: []
|
271
271
|
files:
|
272
|
-
- ./lib/http_stub.rb
|
273
|
-
- ./lib/http_stub/configurer.rb
|
274
|
-
- ./lib/http_stub/configurer/dsl/deprecated.rb
|
275
|
-
- ./lib/http_stub/configurer/dsl/
|
276
|
-
- ./lib/http_stub/configurer/dsl/
|
277
|
-
- ./lib/http_stub/configurer/dsl/
|
278
|
-
- ./lib/http_stub/configurer/dsl/
|
279
|
-
- ./lib/http_stub/configurer/dsl/
|
280
|
-
- ./lib/http_stub/configurer/dsl/
|
281
|
-
- ./lib/http_stub/configurer/
|
282
|
-
- ./lib/http_stub/configurer/
|
283
|
-
- ./lib/http_stub/configurer/request/
|
284
|
-
- ./lib/http_stub/configurer/request/http/
|
285
|
-
- ./lib/http_stub/configurer/request/
|
286
|
-
- ./lib/http_stub/configurer/request/
|
287
|
-
- ./lib/http_stub/configurer/request/
|
288
|
-
- ./lib/http_stub/configurer/request/
|
289
|
-
- ./lib/http_stub/configurer/request/
|
290
|
-
- ./lib/http_stub/configurer/request/
|
291
|
-
- ./lib/http_stub/configurer/
|
292
|
-
- ./lib/http_stub/configurer/
|
293
|
-
- ./lib/http_stub/configurer/server/
|
294
|
-
- ./lib/http_stub/configurer/server/
|
295
|
-
- ./lib/http_stub/configurer/server/
|
296
|
-
- ./lib/http_stub/
|
297
|
-
- ./lib/http_stub/
|
298
|
-
- ./lib/http_stub/
|
299
|
-
- ./lib/http_stub/
|
300
|
-
- ./lib/http_stub/
|
301
|
-
- ./lib/http_stub/rake/
|
302
|
-
- ./lib/http_stub/
|
303
|
-
- ./lib/http_stub/
|
304
|
-
- ./lib/http_stub/server/
|
305
|
-
- ./lib/http_stub/server/
|
306
|
-
- ./lib/http_stub/server/
|
307
|
-
- ./lib/http_stub/server/
|
308
|
-
- ./lib/http_stub/server/
|
309
|
-
- ./lib/http_stub/server/scenario
|
310
|
-
- ./lib/http_stub/server/scenario/
|
311
|
-
- ./lib/http_stub/server/scenario/
|
312
|
-
- ./lib/http_stub/server/
|
313
|
-
- ./lib/http_stub/server/
|
314
|
-
- ./lib/http_stub/server/stub
|
315
|
-
- ./lib/http_stub/server/stub/
|
316
|
-
- ./lib/http_stub/server/stub/
|
317
|
-
- ./lib/http_stub/server/stub/
|
318
|
-
- ./lib/http_stub/server/stub/
|
319
|
-
- ./lib/http_stub/server/stub/
|
320
|
-
- ./lib/http_stub/server/stub/
|
321
|
-
- ./lib/http_stub/server/stub/
|
322
|
-
- ./lib/http_stub/server/stub/
|
323
|
-
- ./lib/http_stub/server/stub/
|
324
|
-
- ./lib/http_stub/server/stub/
|
325
|
-
- ./lib/http_stub/server/stub/
|
326
|
-
- ./lib/http_stub/server/stub/
|
327
|
-
- ./lib/http_stub/server/stub/
|
328
|
-
- ./lib/http_stub/server/stub/
|
329
|
-
- ./lib/http_stub/server/stub/
|
330
|
-
- ./lib/http_stub/server/stub/
|
331
|
-
- ./lib/http_stub/server/stub/response
|
332
|
-
- ./lib/http_stub/server/stub/response/
|
333
|
-
- ./lib/http_stub/server/stub/
|
334
|
-
- ./lib/http_stub/server/stub/
|
335
|
-
- ./lib/http_stub/server/stub/
|
336
|
-
- ./lib/http_stub/server/stub/
|
337
|
-
- ./lib/http_stub/server/stub/
|
338
|
-
- ./lib/http_stub/server/
|
339
|
-
- ./lib/http_stub/server/
|
340
|
-
- ./lib/http_stub/server/views/
|
341
|
-
- ./lib/http_stub/server/views/
|
342
|
-
- ./lib/http_stub/server/views/
|
343
|
-
- ./lib/http_stub/server/views/
|
344
|
-
- ./lib/http_stub/server/views/
|
345
|
-
- ./lib/http_stub/server/views/
|
346
|
-
- ./lib/http_stub/
|
347
|
-
- ./
|
348
|
-
- ./
|
349
|
-
- ./spec/acceptance/
|
350
|
-
- ./spec/acceptance/
|
351
|
-
- ./spec/acceptance/
|
352
|
-
- ./spec/acceptance/
|
353
|
-
- ./spec/acceptance/
|
354
|
-
- ./spec/
|
355
|
-
- ./spec/
|
356
|
-
- ./spec/
|
357
|
-
- ./spec/
|
358
|
-
- ./spec/
|
359
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
360
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
361
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
362
|
-
- ./spec/lib/http_stub/configurer/
|
363
|
-
- ./spec/lib/http_stub/configurer/
|
364
|
-
- ./spec/lib/http_stub/configurer/
|
365
|
-
- ./spec/lib/http_stub/configurer/
|
366
|
-
- ./spec/lib/http_stub/configurer/
|
367
|
-
- ./spec/lib/http_stub/configurer/
|
368
|
-
- ./spec/lib/http_stub/configurer/request/
|
369
|
-
- ./spec/lib/http_stub/configurer/request/
|
370
|
-
- ./spec/lib/http_stub/configurer/request/
|
371
|
-
- ./spec/lib/http_stub/configurer/
|
372
|
-
- ./spec/lib/http_stub/configurer/
|
373
|
-
- ./spec/lib/http_stub/configurer/
|
374
|
-
- ./spec/lib/http_stub/configurer/
|
375
|
-
- ./spec/lib/http_stub/configurer/
|
376
|
-
- ./spec/lib/http_stub/
|
377
|
-
- ./spec/lib/http_stub/
|
378
|
-
- ./spec/lib/http_stub/
|
379
|
-
- ./spec/lib/http_stub/
|
380
|
-
- ./spec/lib/http_stub/
|
381
|
-
- ./spec/lib/http_stub/
|
382
|
-
- ./spec/lib/http_stub/
|
383
|
-
- ./spec/lib/http_stub/
|
384
|
-
- ./spec/lib/http_stub/
|
385
|
-
- ./spec/lib/http_stub/
|
386
|
-
- ./spec/lib/http_stub/
|
387
|
-
- ./spec/lib/http_stub/
|
388
|
-
- ./spec/lib/http_stub/server/
|
389
|
-
- ./spec/lib/http_stub/server/
|
390
|
-
- ./spec/lib/http_stub/server/
|
391
|
-
- ./spec/lib/http_stub/server/
|
392
|
-
- ./spec/lib/http_stub/server/
|
393
|
-
- ./spec/lib/http_stub/server/
|
394
|
-
- ./spec/lib/http_stub/server/
|
395
|
-
- ./spec/lib/http_stub/server/
|
396
|
-
- ./spec/lib/http_stub/server/
|
397
|
-
- ./spec/lib/http_stub/server/
|
398
|
-
- ./spec/lib/http_stub/server/
|
399
|
-
- ./spec/lib/http_stub/server/
|
400
|
-
- ./spec/lib/http_stub/server/
|
401
|
-
- ./spec/lib/http_stub/server/stub/
|
402
|
-
- ./spec/lib/http_stub/server/stub/
|
403
|
-
- ./spec/lib/http_stub/server/stub/
|
404
|
-
- ./spec/lib/http_stub/server/stub/
|
405
|
-
- ./spec/lib/http_stub/server/stub/
|
406
|
-
- ./spec/lib/http_stub/server/stub/
|
407
|
-
- ./spec/lib/http_stub/server/stub/
|
408
|
-
- ./spec/lib/http_stub/server/stub/
|
409
|
-
- ./spec/lib/http_stub/server/stub/
|
410
|
-
- ./spec/lib/http_stub/server/stub/
|
411
|
-
- ./spec/lib/http_stub/server/stub/
|
412
|
-
- ./spec/lib/http_stub/server/stub/
|
413
|
-
- ./spec/lib/http_stub/server/stub/
|
414
|
-
- ./spec/lib/http_stub/server/stub/
|
415
|
-
- ./spec/lib/http_stub/server/stub/
|
416
|
-
- ./spec/lib/http_stub/server/stub/
|
417
|
-
- ./spec/lib/http_stub/server/stub/
|
418
|
-
- ./spec/lib/http_stub/server/stub/
|
419
|
-
- ./spec/lib/http_stub/server/stub/
|
420
|
-
- ./spec/lib/http_stub/server/
|
421
|
-
- ./spec/
|
422
|
-
- ./spec/
|
423
|
-
- ./spec/
|
424
|
-
- ./spec/
|
425
|
-
- ./spec/
|
426
|
-
- ./spec/
|
427
|
-
- ./spec/
|
272
|
+
- "./lib/http_stub.rb"
|
273
|
+
- "./lib/http_stub/configurer.rb"
|
274
|
+
- "./lib/http_stub/configurer/dsl/deprecated.rb"
|
275
|
+
- "./lib/http_stub/configurer/dsl/endpoint_template.rb"
|
276
|
+
- "./lib/http_stub/configurer/dsl/scenario_activator.rb"
|
277
|
+
- "./lib/http_stub/configurer/dsl/scenario_builder.rb"
|
278
|
+
- "./lib/http_stub/configurer/dsl/server.rb"
|
279
|
+
- "./lib/http_stub/configurer/dsl/stub_activator_builder.rb"
|
280
|
+
- "./lib/http_stub/configurer/dsl/stub_builder.rb"
|
281
|
+
- "./lib/http_stub/configurer/dsl/stub_builder_producer.rb"
|
282
|
+
- "./lib/http_stub/configurer/part.rb"
|
283
|
+
- "./lib/http_stub/configurer/request/controllable_value.rb"
|
284
|
+
- "./lib/http_stub/configurer/request/http/basic.rb"
|
285
|
+
- "./lib/http_stub/configurer/request/http/factory.rb"
|
286
|
+
- "./lib/http_stub/configurer/request/http/multipart.rb"
|
287
|
+
- "./lib/http_stub/configurer/request/omittable.rb"
|
288
|
+
- "./lib/http_stub/configurer/request/regexpable.rb"
|
289
|
+
- "./lib/http_stub/configurer/request/scenario.rb"
|
290
|
+
- "./lib/http_stub/configurer/request/stub.rb"
|
291
|
+
- "./lib/http_stub/configurer/request/stub_response.rb"
|
292
|
+
- "./lib/http_stub/configurer/request/stub_response_file.rb"
|
293
|
+
- "./lib/http_stub/configurer/server/buffered_command_processor.rb"
|
294
|
+
- "./lib/http_stub/configurer/server/command.rb"
|
295
|
+
- "./lib/http_stub/configurer/server/command_processor.rb"
|
296
|
+
- "./lib/http_stub/configurer/server/facade.rb"
|
297
|
+
- "./lib/http_stub/configurer/server/request_processor.rb"
|
298
|
+
- "./lib/http_stub/extensions/core/hash.rb"
|
299
|
+
- "./lib/http_stub/extensions/rack/handler.rb"
|
300
|
+
- "./lib/http_stub/hash_with_indifferent_and_insensitive_access.rb"
|
301
|
+
- "./lib/http_stub/rake/server_daemon_tasks.rb"
|
302
|
+
- "./lib/http_stub/rake/server_tasks.rb"
|
303
|
+
- "./lib/http_stub/rake/task_generators.rb"
|
304
|
+
- "./lib/http_stub/server/application.rb"
|
305
|
+
- "./lib/http_stub/server/daemon.rb"
|
306
|
+
- "./lib/http_stub/server/registry.rb"
|
307
|
+
- "./lib/http_stub/server/response.rb"
|
308
|
+
- "./lib/http_stub/server/response_pipeline.rb"
|
309
|
+
- "./lib/http_stub/server/scenario.rb"
|
310
|
+
- "./lib/http_stub/server/scenario/activator.rb"
|
311
|
+
- "./lib/http_stub/server/scenario/controller.rb"
|
312
|
+
- "./lib/http_stub/server/scenario/instance.rb"
|
313
|
+
- "./lib/http_stub/server/scenario/request_parser.rb"
|
314
|
+
- "./lib/http_stub/server/stub.rb"
|
315
|
+
- "./lib/http_stub/server/stub/controller.rb"
|
316
|
+
- "./lib/http_stub/server/stub/exact_value_matcher.rb"
|
317
|
+
- "./lib/http_stub/server/stub/hash_with_string_value_matchers.rb"
|
318
|
+
- "./lib/http_stub/server/stub/headers.rb"
|
319
|
+
- "./lib/http_stub/server/stub/instance.rb"
|
320
|
+
- "./lib/http_stub/server/stub/json_request_body.rb"
|
321
|
+
- "./lib/http_stub/server/stub/method.rb"
|
322
|
+
- "./lib/http_stub/server/stub/omitted_value_matcher.rb"
|
323
|
+
- "./lib/http_stub/server/stub/payload_file_consolidator.rb"
|
324
|
+
- "./lib/http_stub/server/stub/regexp_value_matcher.rb"
|
325
|
+
- "./lib/http_stub/server/stub/registry.rb"
|
326
|
+
- "./lib/http_stub/server/stub/request_body.rb"
|
327
|
+
- "./lib/http_stub/server/stub/request_header_parser.rb"
|
328
|
+
- "./lib/http_stub/server/stub/request_headers.rb"
|
329
|
+
- "./lib/http_stub/server/stub/request_parameters.rb"
|
330
|
+
- "./lib/http_stub/server/stub/request_parser.rb"
|
331
|
+
- "./lib/http_stub/server/stub/response.rb"
|
332
|
+
- "./lib/http_stub/server/stub/response/base.rb"
|
333
|
+
- "./lib/http_stub/server/stub/response/file.rb"
|
334
|
+
- "./lib/http_stub/server/stub/response/text.rb"
|
335
|
+
- "./lib/http_stub/server/stub/simple_request_body.rb"
|
336
|
+
- "./lib/http_stub/server/stub/string_value_matcher.rb"
|
337
|
+
- "./lib/http_stub/server/stub/triggers.rb"
|
338
|
+
- "./lib/http_stub/server/stub/truthy_request_matcher.rb"
|
339
|
+
- "./lib/http_stub/server/stub/uri.rb"
|
340
|
+
- "./lib/http_stub/server/views/_scenario.haml"
|
341
|
+
- "./lib/http_stub/server/views/_stub.haml"
|
342
|
+
- "./lib/http_stub/server/views/_stub_file_response.haml"
|
343
|
+
- "./lib/http_stub/server/views/_stub_text_response.haml"
|
344
|
+
- "./lib/http_stub/server/views/application.sass"
|
345
|
+
- "./lib/http_stub/server/views/layout.haml"
|
346
|
+
- "./lib/http_stub/server/views/scenarios.haml"
|
347
|
+
- "./lib/http_stub/server/views/stubs.haml"
|
348
|
+
- "./lib/http_stub/version.rb"
|
349
|
+
- "./spec/acceptance/activator_spec.rb"
|
350
|
+
- "./spec/acceptance/configurer_initialization_spec.rb"
|
351
|
+
- "./spec/acceptance/configurer_part_spec.rb"
|
352
|
+
- "./spec/acceptance/endpoint_template_spec.rb"
|
353
|
+
- "./spec/acceptance/scenario_spec.rb"
|
354
|
+
- "./spec/acceptance/stub_body_request_matching_spec.rb"
|
355
|
+
- "./spec/acceptance/stub_control_values_spec.rb"
|
356
|
+
- "./spec/acceptance/stub_spec.rb"
|
357
|
+
- "./spec/acceptance/stub_trigger_spec.rb"
|
358
|
+
- "./spec/curl_samples.txt"
|
359
|
+
- "./spec/lib/http_stub/configurer/dsl/deprecated_spec.rb"
|
360
|
+
- "./spec/lib/http_stub/configurer/dsl/endpoint_template_spec.rb"
|
361
|
+
- "./spec/lib/http_stub/configurer/dsl/scenario_activator_spec.rb"
|
362
|
+
- "./spec/lib/http_stub/configurer/dsl/scenario_builder_spec.rb"
|
363
|
+
- "./spec/lib/http_stub/configurer/dsl/server_spec.rb"
|
364
|
+
- "./spec/lib/http_stub/configurer/dsl/stub_activator_builder_spec.rb"
|
365
|
+
- "./spec/lib/http_stub/configurer/dsl/stub_builder_producer_spec.rb"
|
366
|
+
- "./spec/lib/http_stub/configurer/dsl/stub_builder_spec.rb"
|
367
|
+
- "./spec/lib/http_stub/configurer/part_spec.rb"
|
368
|
+
- "./spec/lib/http_stub/configurer/request/controllable_value_spec.rb"
|
369
|
+
- "./spec/lib/http_stub/configurer/request/http/basic_spec.rb"
|
370
|
+
- "./spec/lib/http_stub/configurer/request/http/factory_spec.rb"
|
371
|
+
- "./spec/lib/http_stub/configurer/request/http/multipart_spec.rb"
|
372
|
+
- "./spec/lib/http_stub/configurer/request/omittable_spec.rb"
|
373
|
+
- "./spec/lib/http_stub/configurer/request/regexpable_spec.rb"
|
374
|
+
- "./spec/lib/http_stub/configurer/request/scenario_spec.rb"
|
375
|
+
- "./spec/lib/http_stub/configurer/request/stub_response_spec.rb"
|
376
|
+
- "./spec/lib/http_stub/configurer/request/stub_spec.rb"
|
377
|
+
- "./spec/lib/http_stub/configurer/server/buffered_command_processor_spec.rb"
|
378
|
+
- "./spec/lib/http_stub/configurer/server/command_processor_integration_spec.rb"
|
379
|
+
- "./spec/lib/http_stub/configurer/server/command_spec.rb"
|
380
|
+
- "./spec/lib/http_stub/configurer/server/facade_spec.rb"
|
381
|
+
- "./spec/lib/http_stub/configurer/server/request_processor_spec.rb"
|
382
|
+
- "./spec/lib/http_stub/extensions/core/hash_spec.rb"
|
383
|
+
- "./spec/lib/http_stub/extensions/rack/handler_spec.rb"
|
384
|
+
- "./spec/lib/http_stub/hash_with_indifferent_and_insensitive_access_spec.rb"
|
385
|
+
- "./spec/lib/http_stub/rake/server_daemon_tasks_smoke_spec.rb"
|
386
|
+
- "./spec/lib/http_stub/rake/server_tasks_smoke_spec.rb"
|
387
|
+
- "./spec/lib/http_stub/rake/server_tasks_spec.rb"
|
388
|
+
- "./spec/lib/http_stub/server/application_integration_spec.rb"
|
389
|
+
- "./spec/lib/http_stub/server/application_spec.rb"
|
390
|
+
- "./spec/lib/http_stub/server/daemon_integration_spec.rb"
|
391
|
+
- "./spec/lib/http_stub/server/daemon_spec.rb"
|
392
|
+
- "./spec/lib/http_stub/server/registry_spec.rb"
|
393
|
+
- "./spec/lib/http_stub/server/request_file_consolidator_spec.rb"
|
394
|
+
- "./spec/lib/http_stub/server/response_pipeline_spec.rb"
|
395
|
+
- "./spec/lib/http_stub/server/response_spec.rb"
|
396
|
+
- "./spec/lib/http_stub/server/scenario/activator_spec.rb"
|
397
|
+
- "./spec/lib/http_stub/server/scenario/controller_spec.rb"
|
398
|
+
- "./spec/lib/http_stub/server/scenario/instance_spec.rb"
|
399
|
+
- "./spec/lib/http_stub/server/scenario/request_parser_spec.rb"
|
400
|
+
- "./spec/lib/http_stub/server/scenario_spec.rb"
|
401
|
+
- "./spec/lib/http_stub/server/stub/controller_spec.rb"
|
402
|
+
- "./spec/lib/http_stub/server/stub/exact_value_matcher_spec.rb"
|
403
|
+
- "./spec/lib/http_stub/server/stub/hash_with_string_value_matchers_spec.rb"
|
404
|
+
- "./spec/lib/http_stub/server/stub/headers_spec.rb"
|
405
|
+
- "./spec/lib/http_stub/server/stub/instance_spec.rb"
|
406
|
+
- "./spec/lib/http_stub/server/stub/json_request_body_spec.rb"
|
407
|
+
- "./spec/lib/http_stub/server/stub/method_spec.rb"
|
408
|
+
- "./spec/lib/http_stub/server/stub/omitted_value_matcher_spec.rb"
|
409
|
+
- "./spec/lib/http_stub/server/stub/regexp_value_matcher_spec.rb"
|
410
|
+
- "./spec/lib/http_stub/server/stub/registry_integration_spec.rb"
|
411
|
+
- "./spec/lib/http_stub/server/stub/registry_spec.rb"
|
412
|
+
- "./spec/lib/http_stub/server/stub/request_body_spec.rb"
|
413
|
+
- "./spec/lib/http_stub/server/stub/request_header_parser_spec.rb"
|
414
|
+
- "./spec/lib/http_stub/server/stub/request_headers_spec.rb"
|
415
|
+
- "./spec/lib/http_stub/server/stub/request_parameters_spec.rb"
|
416
|
+
- "./spec/lib/http_stub/server/stub/request_parser_spec.rb"
|
417
|
+
- "./spec/lib/http_stub/server/stub/response/base_spec.rb"
|
418
|
+
- "./spec/lib/http_stub/server/stub/response/file_spec.rb"
|
419
|
+
- "./spec/lib/http_stub/server/stub/response/text_spec.rb"
|
420
|
+
- "./spec/lib/http_stub/server/stub/response_spec.rb"
|
421
|
+
- "./spec/lib/http_stub/server/stub/simple_request_body_spec.rb"
|
422
|
+
- "./spec/lib/http_stub/server/stub/string_value_matcher_spec.rb"
|
423
|
+
- "./spec/lib/http_stub/server/stub/triggers_spec.rb"
|
424
|
+
- "./spec/lib/http_stub/server/stub/truthy_request_matcher_spec.rb"
|
425
|
+
- "./spec/lib/http_stub/server/stub/uri_spec.rb"
|
426
|
+
- "./spec/lib/http_stub/server/stub_spec.rb"
|
427
|
+
- "./spec/resources/sample.pdf"
|
428
|
+
- "./spec/resources/sample.txt"
|
429
|
+
- "./spec/spec_helper.rb"
|
430
|
+
- "./spec/support/configurer_integration.rb"
|
431
|
+
- "./spec/support/scenario_fixture.rb"
|
432
|
+
- "./spec/support/server_integration.rb"
|
433
|
+
- "./spec/support/stub_fixture.rb"
|
428
434
|
homepage: http://github.com/MYOB-Technology/http_stub
|
429
435
|
licenses:
|
430
436
|
- MIT
|
@@ -435,99 +441,103 @@ require_paths:
|
|
435
441
|
- lib
|
436
442
|
required_ruby_version: !ruby/object:Gem::Requirement
|
437
443
|
requirements:
|
438
|
-
- -
|
444
|
+
- - ">="
|
439
445
|
- !ruby/object:Gem::Version
|
440
446
|
version: 1.9.3
|
441
447
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
442
448
|
requirements:
|
443
|
-
- -
|
449
|
+
- - ">="
|
444
450
|
- !ruby/object:Gem::Version
|
445
451
|
version: '0'
|
446
452
|
requirements: []
|
447
453
|
rubyforge_project: http_stub
|
448
|
-
rubygems_version: 2.4.
|
454
|
+
rubygems_version: 2.4.6
|
449
455
|
signing_key:
|
450
456
|
specification_version: 4
|
451
457
|
summary: A HTTP Server replaying configured stub responses
|
452
458
|
test_files:
|
453
|
-
- ./spec/acceptance/activator_spec.rb
|
454
|
-
- ./spec/acceptance/configurer_initialization_spec.rb
|
455
|
-
- ./spec/acceptance/
|
456
|
-
- ./spec/acceptance/
|
457
|
-
- ./spec/acceptance/
|
458
|
-
- ./spec/acceptance/
|
459
|
-
- ./spec/acceptance/
|
460
|
-
- ./spec/
|
461
|
-
- ./spec/
|
462
|
-
- ./spec/
|
463
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
464
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
465
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
466
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
467
|
-
- ./spec/lib/http_stub/configurer/dsl/
|
468
|
-
- ./spec/lib/http_stub/configurer/
|
469
|
-
- ./spec/lib/http_stub/configurer/
|
470
|
-
- ./spec/lib/http_stub/configurer/
|
471
|
-
- ./spec/lib/http_stub/configurer/
|
472
|
-
- ./spec/lib/http_stub/configurer/request/
|
473
|
-
- ./spec/lib/http_stub/configurer/request/
|
474
|
-
- ./spec/lib/http_stub/configurer/request/
|
475
|
-
- ./spec/lib/http_stub/configurer/request/
|
476
|
-
- ./spec/lib/http_stub/configurer/request/
|
477
|
-
- ./spec/lib/http_stub/configurer/
|
478
|
-
- ./spec/lib/http_stub/configurer/
|
479
|
-
- ./spec/lib/http_stub/configurer/
|
480
|
-
- ./spec/lib/http_stub/configurer/
|
481
|
-
- ./spec/lib/http_stub/configurer/server/
|
482
|
-
- ./spec/lib/http_stub/
|
483
|
-
- ./spec/lib/http_stub/
|
484
|
-
- ./spec/lib/http_stub/
|
485
|
-
- ./spec/lib/http_stub/
|
486
|
-
- ./spec/lib/http_stub/
|
487
|
-
- ./spec/lib/http_stub/
|
488
|
-
- ./spec/lib/http_stub/
|
489
|
-
- ./spec/lib/http_stub/
|
490
|
-
- ./spec/lib/http_stub/
|
491
|
-
- ./spec/lib/http_stub/
|
492
|
-
- ./spec/lib/http_stub/server/
|
493
|
-
- ./spec/lib/http_stub/server/
|
494
|
-
- ./spec/lib/http_stub/server/
|
495
|
-
- ./spec/lib/http_stub/server/
|
496
|
-
- ./spec/lib/http_stub/server/
|
497
|
-
- ./spec/lib/http_stub/server/
|
498
|
-
- ./spec/lib/http_stub/server/
|
499
|
-
- ./spec/lib/http_stub/server/
|
500
|
-
- ./spec/lib/http_stub/server/
|
501
|
-
- ./spec/lib/http_stub/server/
|
502
|
-
- ./spec/lib/http_stub/server/
|
503
|
-
- ./spec/lib/http_stub/server/
|
504
|
-
- ./spec/lib/http_stub/server/
|
505
|
-
- ./spec/lib/http_stub/server/stub/
|
506
|
-
- ./spec/lib/http_stub/server/stub/
|
507
|
-
- ./spec/lib/http_stub/server/stub/
|
508
|
-
- ./spec/lib/http_stub/server/stub/
|
509
|
-
- ./spec/lib/http_stub/server/stub/
|
510
|
-
- ./spec/lib/http_stub/server/stub/
|
511
|
-
- ./spec/lib/http_stub/server/stub/
|
512
|
-
- ./spec/lib/http_stub/server/stub/
|
513
|
-
- ./spec/lib/http_stub/server/stub/
|
514
|
-
- ./spec/lib/http_stub/server/stub/
|
515
|
-
- ./spec/lib/http_stub/server/stub/
|
516
|
-
- ./spec/lib/http_stub/server/stub/
|
517
|
-
- ./spec/lib/http_stub/server/stub/
|
518
|
-
- ./spec/lib/http_stub/server/stub/
|
519
|
-
- ./spec/lib/http_stub/server/stub/
|
520
|
-
- ./spec/lib/http_stub/server/stub/
|
521
|
-
- ./spec/lib/http_stub/server/stub/
|
522
|
-
- ./spec/lib/http_stub/server/stub/
|
523
|
-
- ./spec/lib/http_stub/server/stub/
|
524
|
-
- ./spec/lib/http_stub/server/stub/
|
525
|
-
- ./spec/lib/http_stub/server/stub/
|
526
|
-
- ./spec/lib/http_stub/server/
|
527
|
-
- ./spec/
|
528
|
-
- ./spec/
|
529
|
-
- ./spec/
|
530
|
-
- ./spec/
|
531
|
-
- ./spec/
|
532
|
-
- ./spec/
|
533
|
-
- ./spec/
|
459
|
+
- "./spec/acceptance/activator_spec.rb"
|
460
|
+
- "./spec/acceptance/configurer_initialization_spec.rb"
|
461
|
+
- "./spec/acceptance/configurer_part_spec.rb"
|
462
|
+
- "./spec/acceptance/endpoint_template_spec.rb"
|
463
|
+
- "./spec/acceptance/scenario_spec.rb"
|
464
|
+
- "./spec/acceptance/stub_body_request_matching_spec.rb"
|
465
|
+
- "./spec/acceptance/stub_control_values_spec.rb"
|
466
|
+
- "./spec/acceptance/stub_spec.rb"
|
467
|
+
- "./spec/acceptance/stub_trigger_spec.rb"
|
468
|
+
- "./spec/curl_samples.txt"
|
469
|
+
- "./spec/lib/http_stub/configurer/dsl/deprecated_spec.rb"
|
470
|
+
- "./spec/lib/http_stub/configurer/dsl/endpoint_template_spec.rb"
|
471
|
+
- "./spec/lib/http_stub/configurer/dsl/scenario_activator_spec.rb"
|
472
|
+
- "./spec/lib/http_stub/configurer/dsl/scenario_builder_spec.rb"
|
473
|
+
- "./spec/lib/http_stub/configurer/dsl/server_spec.rb"
|
474
|
+
- "./spec/lib/http_stub/configurer/dsl/stub_activator_builder_spec.rb"
|
475
|
+
- "./spec/lib/http_stub/configurer/dsl/stub_builder_producer_spec.rb"
|
476
|
+
- "./spec/lib/http_stub/configurer/dsl/stub_builder_spec.rb"
|
477
|
+
- "./spec/lib/http_stub/configurer/part_spec.rb"
|
478
|
+
- "./spec/lib/http_stub/configurer/request/controllable_value_spec.rb"
|
479
|
+
- "./spec/lib/http_stub/configurer/request/http/basic_spec.rb"
|
480
|
+
- "./spec/lib/http_stub/configurer/request/http/factory_spec.rb"
|
481
|
+
- "./spec/lib/http_stub/configurer/request/http/multipart_spec.rb"
|
482
|
+
- "./spec/lib/http_stub/configurer/request/omittable_spec.rb"
|
483
|
+
- "./spec/lib/http_stub/configurer/request/regexpable_spec.rb"
|
484
|
+
- "./spec/lib/http_stub/configurer/request/scenario_spec.rb"
|
485
|
+
- "./spec/lib/http_stub/configurer/request/stub_response_spec.rb"
|
486
|
+
- "./spec/lib/http_stub/configurer/request/stub_spec.rb"
|
487
|
+
- "./spec/lib/http_stub/configurer/server/buffered_command_processor_spec.rb"
|
488
|
+
- "./spec/lib/http_stub/configurer/server/command_processor_integration_spec.rb"
|
489
|
+
- "./spec/lib/http_stub/configurer/server/command_spec.rb"
|
490
|
+
- "./spec/lib/http_stub/configurer/server/facade_spec.rb"
|
491
|
+
- "./spec/lib/http_stub/configurer/server/request_processor_spec.rb"
|
492
|
+
- "./spec/lib/http_stub/extensions/core/hash_spec.rb"
|
493
|
+
- "./spec/lib/http_stub/extensions/rack/handler_spec.rb"
|
494
|
+
- "./spec/lib/http_stub/hash_with_indifferent_and_insensitive_access_spec.rb"
|
495
|
+
- "./spec/lib/http_stub/rake/server_daemon_tasks_smoke_spec.rb"
|
496
|
+
- "./spec/lib/http_stub/rake/server_tasks_smoke_spec.rb"
|
497
|
+
- "./spec/lib/http_stub/rake/server_tasks_spec.rb"
|
498
|
+
- "./spec/lib/http_stub/server/application_integration_spec.rb"
|
499
|
+
- "./spec/lib/http_stub/server/application_spec.rb"
|
500
|
+
- "./spec/lib/http_stub/server/daemon_integration_spec.rb"
|
501
|
+
- "./spec/lib/http_stub/server/daemon_spec.rb"
|
502
|
+
- "./spec/lib/http_stub/server/registry_spec.rb"
|
503
|
+
- "./spec/lib/http_stub/server/request_file_consolidator_spec.rb"
|
504
|
+
- "./spec/lib/http_stub/server/response_pipeline_spec.rb"
|
505
|
+
- "./spec/lib/http_stub/server/response_spec.rb"
|
506
|
+
- "./spec/lib/http_stub/server/scenario/activator_spec.rb"
|
507
|
+
- "./spec/lib/http_stub/server/scenario/controller_spec.rb"
|
508
|
+
- "./spec/lib/http_stub/server/scenario/instance_spec.rb"
|
509
|
+
- "./spec/lib/http_stub/server/scenario/request_parser_spec.rb"
|
510
|
+
- "./spec/lib/http_stub/server/scenario_spec.rb"
|
511
|
+
- "./spec/lib/http_stub/server/stub/controller_spec.rb"
|
512
|
+
- "./spec/lib/http_stub/server/stub/exact_value_matcher_spec.rb"
|
513
|
+
- "./spec/lib/http_stub/server/stub/hash_with_string_value_matchers_spec.rb"
|
514
|
+
- "./spec/lib/http_stub/server/stub/headers_spec.rb"
|
515
|
+
- "./spec/lib/http_stub/server/stub/instance_spec.rb"
|
516
|
+
- "./spec/lib/http_stub/server/stub/json_request_body_spec.rb"
|
517
|
+
- "./spec/lib/http_stub/server/stub/method_spec.rb"
|
518
|
+
- "./spec/lib/http_stub/server/stub/omitted_value_matcher_spec.rb"
|
519
|
+
- "./spec/lib/http_stub/server/stub/regexp_value_matcher_spec.rb"
|
520
|
+
- "./spec/lib/http_stub/server/stub/registry_integration_spec.rb"
|
521
|
+
- "./spec/lib/http_stub/server/stub/registry_spec.rb"
|
522
|
+
- "./spec/lib/http_stub/server/stub/request_body_spec.rb"
|
523
|
+
- "./spec/lib/http_stub/server/stub/request_header_parser_spec.rb"
|
524
|
+
- "./spec/lib/http_stub/server/stub/request_headers_spec.rb"
|
525
|
+
- "./spec/lib/http_stub/server/stub/request_parameters_spec.rb"
|
526
|
+
- "./spec/lib/http_stub/server/stub/request_parser_spec.rb"
|
527
|
+
- "./spec/lib/http_stub/server/stub/response/base_spec.rb"
|
528
|
+
- "./spec/lib/http_stub/server/stub/response/file_spec.rb"
|
529
|
+
- "./spec/lib/http_stub/server/stub/response/text_spec.rb"
|
530
|
+
- "./spec/lib/http_stub/server/stub/response_spec.rb"
|
531
|
+
- "./spec/lib/http_stub/server/stub/simple_request_body_spec.rb"
|
532
|
+
- "./spec/lib/http_stub/server/stub/string_value_matcher_spec.rb"
|
533
|
+
- "./spec/lib/http_stub/server/stub/triggers_spec.rb"
|
534
|
+
- "./spec/lib/http_stub/server/stub/truthy_request_matcher_spec.rb"
|
535
|
+
- "./spec/lib/http_stub/server/stub/uri_spec.rb"
|
536
|
+
- "./spec/lib/http_stub/server/stub_spec.rb"
|
537
|
+
- "./spec/resources/sample.pdf"
|
538
|
+
- "./spec/resources/sample.txt"
|
539
|
+
- "./spec/spec_helper.rb"
|
540
|
+
- "./spec/support/configurer_integration.rb"
|
541
|
+
- "./spec/support/scenario_fixture.rb"
|
542
|
+
- "./spec/support/server_integration.rb"
|
543
|
+
- "./spec/support/stub_fixture.rb"
|