rest_baby 0.8 → 1.3
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.
- checksums.yaml +4 -4
- data/.rubocop.yml +0 -1
- data/ChangeLog +12 -2
- data/Gemfile +2 -0
- data/Rakefile +7 -1
- data/doc/MockRestService.html +204 -31
- data/doc/RestBaby/Client.html +686 -246
- data/doc/RestBaby.html +6 -7
- data/doc/_index.html +6 -19
- data/doc/class_list.html +6 -2
- data/doc/css/style.css +2 -1
- data/doc/feature_list.html +82 -55
- data/doc/featuredirectories_list.html +25 -32
- data/doc/file.README.html +6 -6
- data/doc/file_list.html +5 -1
- data/doc/frames.html +5 -7
- data/doc/index.html +6 -6
- data/doc/js/app.js +7 -2
- data/doc/js/full_list.js +4 -1
- data/doc/method_list.html +41 -25
- data/doc/requirements/features/header_options.html +81 -45
- data/doc/requirements/features/print_response.html +42 -148
- data/doc/requirements/features/rest_client.html +38 -30
- data/doc/requirements/features/url_parameter.html +342 -0
- data/doc/requirements/features.html +42 -39
- data/doc/requirements/step_transformers.html +524 -321
- data/doc/requirements/tags/authentication.html +8 -8
- data/doc/requirements/tags/core.html +4 -4
- data/doc/requirements/tags/delete.html +4 -4
- data/doc/requirements/tags/extended.html +12 -12
- data/doc/requirements/tags/get.html +6 -6
- data/doc/requirements/tags/header.S1.html +160 -0
- data/doc/requirements/tags/header.S2.html +160 -0
- data/doc/requirements/tags/header.S3.html +160 -0
- data/doc/requirements/tags/header.S4.html +160 -0
- data/doc/requirements/tags/header.html +160 -0
- data/doc/requirements/tags/headers.html +7 -16
- data/doc/requirements/tags/parameter.S1.html +160 -0
- data/doc/requirements/tags/parameter.html +160 -0
- data/doc/requirements/tags/post.html +10 -10
- data/doc/requirements/tags/print.S1.html +160 -0
- data/doc/requirements/tags/print.S2.html +160 -0
- data/doc/requirements/tags/print.S3.html +160 -0
- data/doc/requirements/tags/print.S4.html +160 -0
- data/doc/requirements/tags/print.html +4 -4
- data/doc/requirements/tags/put.html +4 -4
- data/doc/requirements/tags/rest.S1.html +160 -0
- data/doc/requirements/tags/rest.S2.html +160 -0
- data/doc/requirements/tags/rest.S3.html +160 -0
- data/doc/requirements/tags/rest.S4.html +160 -0
- data/doc/requirements/tags.html +97 -57
- data/doc/requirements.html +43 -38
- data/doc/step_list.html +204 -189
- data/doc/stepdefinition_list.html +69 -35
- data/doc/tag_list.html +100 -6
- data/doc/top-level-namespace.html +79 -13
- data/features/step_definitions/rest_client_steps.rb +4 -4
- data/lib/rest_baby/version.rb +1 -1
- data/lib/rest_baby.rb +1 -1
- metadata +46 -31
- data/Gemfile.lock +0 -68
data/doc/js/app.js
CHANGED
@@ -78,7 +78,12 @@ function framesInit() {
|
|
78
78
|
if (hasFrames) {
|
79
79
|
document.body.className = 'frames';
|
80
80
|
$('#menu .noframes a').attr('href', document.location);
|
81
|
-
|
81
|
+
try {
|
82
|
+
window.top.document.title = $('html head title').text();
|
83
|
+
} catch(error) {
|
84
|
+
// some browsers will not allow this when serving from file://
|
85
|
+
// but we don't want to stop the world.
|
86
|
+
}
|
82
87
|
}
|
83
88
|
else {
|
84
89
|
$('#menu .noframes a').text('frames').attr('href', framesUrl);
|
@@ -211,4 +216,4 @@ $(linkSummaries);
|
|
211
216
|
$(keyboardShortcuts);
|
212
217
|
$(summaryToggle);
|
213
218
|
$(fixOutsideWorldLinks);
|
214
|
-
$(generateTOC);
|
219
|
+
$(generateTOC);
|
data/doc/js/full_list.js
CHANGED
@@ -123,7 +123,10 @@ function linkList() {
|
|
123
123
|
}
|
124
124
|
}
|
125
125
|
if (clicked) clicked.removeClass('clicked');
|
126
|
-
var win
|
126
|
+
var win;
|
127
|
+
try {
|
128
|
+
win = window.top.frames.main ? window.top.frames.main : window.parent;
|
129
|
+
} catch (e) { win = window.parent; }
|
127
130
|
if (this.tagName.toLowerCase() == "a") {
|
128
131
|
clicked = $(this).parents('li').addClass('clicked');
|
129
132
|
win.location = this.href;
|
data/doc/method_list.html
CHANGED
@@ -20,7 +20,11 @@
|
|
20
20
|
</head>
|
21
21
|
<body>
|
22
22
|
<script type="text/javascript" charset="utf-8">
|
23
|
-
|
23
|
+
var hasFrames = false;
|
24
|
+
try {
|
25
|
+
hasFrames = window.top.frames.main ? true : false;
|
26
|
+
} catch (e) { }
|
27
|
+
if (hasFrames) {
|
24
28
|
document.getElementById('base_target').target = 'main';
|
25
29
|
document.body.className = 'frames';
|
26
30
|
}
|
@@ -68,98 +72,110 @@
|
|
68
72
|
|
69
73
|
|
70
74
|
<li class="r1 ">
|
71
|
-
<span class='object_link'><a href="
|
72
|
-
<small>
|
75
|
+
<span class='object_link'><a href="RestBaby/Client.html#add_headers-instance_method" title="RestBaby::Client#add_headers (method)">#add_headers</a></span>
|
76
|
+
<small>RestBaby::Client</small>
|
73
77
|
</li>
|
74
78
|
|
75
79
|
|
76
80
|
<li class="r2 ">
|
77
|
-
<span class='object_link'><a href="
|
78
|
-
<small>
|
81
|
+
<span class='object_link'><a href="MockRestService.html#auth_string-instance_method" title="MockRestService#auth_string (method)">#auth_string</a></span>
|
82
|
+
<small>MockRestService</small>
|
79
83
|
</li>
|
80
84
|
|
81
85
|
|
82
86
|
<li class="r1 ">
|
83
|
-
<span class='object_link'><a href="RestBaby/Client.html#
|
87
|
+
<span class='object_link'><a href="RestBaby/Client.html#code-instance_method" title="RestBaby::Client#code (method)">#code</a></span>
|
84
88
|
<small>RestBaby::Client</small>
|
85
89
|
</li>
|
86
90
|
|
87
91
|
|
88
92
|
<li class="r2 ">
|
89
|
-
<span class='object_link'><a href="
|
90
|
-
<small>
|
93
|
+
<span class='object_link'><a href="top-level-namespace.html#create_get-instance_method" title="#create_get (method)">#create_get</a></span>
|
94
|
+
<small>Top Level Namespace</small>
|
91
95
|
</li>
|
92
96
|
|
93
97
|
|
94
98
|
<li class="r1 ">
|
95
|
-
<span class='object_link'><a href="RestBaby/Client.html#
|
99
|
+
<span class='object_link'><a href="RestBaby/Client.html#delete-instance_method" title="RestBaby::Client#delete (method)">#delete</a></span>
|
96
100
|
<small>RestBaby::Client</small>
|
97
101
|
</li>
|
98
102
|
|
99
103
|
|
100
104
|
<li class="r2 ">
|
101
|
-
<span class='object_link'><a href="
|
102
|
-
<small>
|
105
|
+
<span class='object_link'><a href="RestBaby/Client.html#get-instance_method" title="RestBaby::Client#get (method)">#get</a></span>
|
106
|
+
<small>RestBaby::Client</small>
|
103
107
|
</li>
|
104
108
|
|
105
109
|
|
106
110
|
<li class="r1 ">
|
107
|
-
<span class='object_link'><a href="
|
108
|
-
<small>
|
111
|
+
<span class='object_link'><a href="MockRestService.html#initialize-instance_method" title="MockRestService#initialize (method)">#initialize</a></span>
|
112
|
+
<small>MockRestService</small>
|
109
113
|
</li>
|
110
114
|
|
111
115
|
|
112
116
|
<li class="r2 ">
|
113
|
-
<span class='object_link'><a href="#
|
114
|
-
<small>
|
117
|
+
<span class='object_link'><a href="RestBaby/Client.html#initialize-instance_method" title="RestBaby::Client#initialize (method)">#initialize</a></span>
|
118
|
+
<small>RestBaby::Client</small>
|
115
119
|
</li>
|
116
120
|
|
117
121
|
|
118
122
|
<li class="r1 ">
|
119
|
-
<span class='object_link'><a href="
|
120
|
-
<small>
|
123
|
+
<span class='object_link'><a href="MockRestService.html#merge_headers-instance_method" title="MockRestService#merge_headers (method)">#merge_headers</a></span>
|
124
|
+
<small>MockRestService</small>
|
121
125
|
</li>
|
122
126
|
|
123
127
|
|
124
128
|
<li class="r2 ">
|
125
|
-
<span class='object_link'><a href="RestBaby/Client.html#
|
129
|
+
<span class='object_link'><a href="RestBaby/Client.html#password-instance_method" title="RestBaby::Client#password (method)">#password</a></span>
|
126
130
|
<small>RestBaby::Client</small>
|
127
131
|
</li>
|
128
132
|
|
129
133
|
|
130
134
|
<li class="r1 ">
|
131
|
-
<span class='object_link'><a href="
|
132
|
-
<small>
|
135
|
+
<span class='object_link'><a href="top-level-namespace.html#pause-instance_method" title="#pause (method)">#pause</a></span>
|
136
|
+
<small>Top Level Namespace</small>
|
133
137
|
</li>
|
134
138
|
|
135
139
|
|
136
140
|
<li class="r2 ">
|
137
|
-
<span class='object_link'><a href="RestBaby/Client.html#
|
141
|
+
<span class='object_link'><a href="RestBaby/Client.html#post-instance_method" title="RestBaby::Client#post (method)">#post</a></span>
|
138
142
|
<small>RestBaby::Client</small>
|
139
143
|
</li>
|
140
144
|
|
141
145
|
|
142
146
|
<li class="r1 ">
|
143
|
-
<span class='object_link'><a href="RestBaby/Client.html#
|
147
|
+
<span class='object_link'><a href="RestBaby/Client.html#put-instance_method" title="RestBaby::Client#put (method)">#put</a></span>
|
144
148
|
<small>RestBaby::Client</small>
|
145
149
|
</li>
|
146
150
|
|
147
151
|
|
148
152
|
<li class="r2 ">
|
149
|
-
<span class='object_link'><a href="RestBaby/Client.html#
|
153
|
+
<span class='object_link'><a href="RestBaby/Client.html#set_auth-instance_method" title="RestBaby::Client#set_auth (method)">#set_auth</a></span>
|
150
154
|
<small>RestBaby::Client</small>
|
151
155
|
</li>
|
152
156
|
|
153
157
|
|
154
158
|
<li class="r1 ">
|
159
|
+
<span class='object_link'><a href="MockRestService.html#store_get_query-instance_method" title="MockRestService#store_get_query (method)">#store_get_query</a></span>
|
160
|
+
<small>MockRestService</small>
|
161
|
+
</li>
|
162
|
+
|
163
|
+
|
164
|
+
<li class="r2 ">
|
155
165
|
<span class='object_link'><a href="MockRestService.html#store_msg-instance_method" title="MockRestService#store_msg (method)">#store_msg</a></span>
|
156
166
|
<small>MockRestService</small>
|
157
167
|
</li>
|
158
168
|
|
159
169
|
|
170
|
+
<li class="r1 ">
|
171
|
+
<span class='object_link'><a href="RestBaby/Client.html#user-instance_method" title="RestBaby::Client#user (method)">#user</a></span>
|
172
|
+
<small>RestBaby::Client</small>
|
173
|
+
</li>
|
174
|
+
|
175
|
+
|
160
176
|
<li class="r2 ">
|
161
|
-
<span class='object_link'><a href="
|
162
|
-
<small>
|
177
|
+
<span class='object_link'><a href="RestBaby/Client.html#wsresponse-instance_method" title="RestBaby::Client#wsresponse (method)">#wsresponse</a></span>
|
178
|
+
<small>RestBaby::Client</small>
|
163
179
|
</li>
|
164
180
|
|
165
181
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Feature: Create a basic rest client that can get, put, post, and delete
|
8
8
|
|
9
|
-
— Documentation by YARD 0.8.7
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -19,7 +19,7 @@
|
|
19
19
|
<script type="text/javascript" charset="utf-8">
|
20
20
|
hasFrames = window.top.frames.main ? true : false;
|
21
21
|
relpath = '../../';
|
22
|
-
framesUrl = "../../frames.html#!"
|
22
|
+
framesUrl = "../../frames.html#!requirements/features/header_options.html";
|
23
23
|
</script>
|
24
24
|
|
25
25
|
|
@@ -142,7 +142,7 @@ $(function() {
|
|
142
142
|
|
143
143
|
<div class="details">
|
144
144
|
<div class="meta developer">
|
145
|
-
<div class="file">features/header_options.feature:
|
145
|
+
<div class="file">features/header_options.feature:5</div>
|
146
146
|
|
147
147
|
<div style="clear:right;"></div>
|
148
148
|
<div class="tags">
|
@@ -151,7 +151,9 @@ $(function() {
|
|
151
151
|
|
152
152
|
<a href="../tags/get.html">@get</a>
|
153
153
|
|
154
|
-
<a href="../tags/
|
154
|
+
<a href="../tags/header.html">@header</a>
|
155
|
+
|
156
|
+
<a href="../tags/header.S1.html">@header.S1</a>
|
155
157
|
|
156
158
|
</div>
|
157
159
|
|
@@ -173,7 +175,7 @@ $(function() {
|
|
173
175
|
<span class="defined">
|
174
176
|
I have a web service
|
175
177
|
<div class="definition developer">
|
176
|
-
<a href="../step_transformers.html#
|
178
|
+
<a href="../step_transformers.html#step_definition7-stepdefinition"><div class="valid"> </div></a>
|
177
179
|
</div>
|
178
180
|
</span>
|
179
181
|
|
@@ -195,10 +197,12 @@ $(function() {
|
|
195
197
|
|
196
198
|
|
197
199
|
|
198
|
-
<span class="
|
199
|
-
I have
|
200
|
+
<span class="undefined">
|
201
|
+
I have "GET" service for "/test" with the following headers
|
200
202
|
<div class="definition developer">
|
201
|
-
<a href="../step_transformers.html#
|
203
|
+
<a href="../step_transformers.html#undefined_steps">
|
204
|
+
<div class="invalid"> </div>
|
205
|
+
</a>
|
202
206
|
</div>
|
203
207
|
</span>
|
204
208
|
|
@@ -239,7 +243,7 @@ $(function() {
|
|
239
243
|
<span class="defined">
|
240
244
|
I am a rest client
|
241
245
|
<div class="definition developer">
|
242
|
-
<a href="../step_transformers.html#
|
246
|
+
<a href="../step_transformers.html#step_definition10-stepdefinition"><div class="valid"> </div></a>
|
243
247
|
</div>
|
244
248
|
</span>
|
245
249
|
|
@@ -264,7 +268,7 @@ $(function() {
|
|
264
268
|
<span class="defined">
|
265
269
|
I have the following header
|
266
270
|
<div class="definition developer">
|
267
|
-
<a href="../step_transformers.html#
|
271
|
+
<a href="../step_transformers.html#step_definition5-stepdefinition"><div class="valid"> </div></a>
|
268
272
|
</div>
|
269
273
|
</span>
|
270
274
|
|
@@ -305,7 +309,7 @@ $(function() {
|
|
305
309
|
<span class="defined">
|
306
310
|
I "<span class='match'>GET</span>" from the web service
|
307
311
|
<div class="definition developer">
|
308
|
-
<a href="../step_transformers.html#
|
312
|
+
<a href="../step_transformers.html#step_definition11-stepdefinition"><div class="valid"> </div></a>
|
309
313
|
</div>
|
310
314
|
</span>
|
311
315
|
|
@@ -330,7 +334,7 @@ $(function() {
|
|
330
334
|
<span class="defined">
|
331
335
|
I receive the expected message
|
332
336
|
<div class="definition developer">
|
333
|
-
<a href="../step_transformers.html#
|
337
|
+
<a href="../step_transformers.html#step_definition15-stepdefinition"><div class="valid"> </div></a>
|
334
338
|
</div>
|
335
339
|
</span>
|
336
340
|
|
@@ -374,7 +378,7 @@ $(function() {
|
|
374
378
|
|
375
379
|
<div class="details">
|
376
380
|
<div class="meta developer">
|
377
|
-
<div class="file">features/header_options.feature:
|
381
|
+
<div class="file">features/header_options.feature:17</div>
|
378
382
|
|
379
383
|
<div style="clear:right;"></div>
|
380
384
|
<div class="tags">
|
@@ -385,6 +389,8 @@ $(function() {
|
|
385
389
|
|
386
390
|
<a href="../tags/headers.html">@headers</a>
|
387
391
|
|
392
|
+
<a href="../tags/header.S2.html">@header.S2</a>
|
393
|
+
|
388
394
|
</div>
|
389
395
|
|
390
396
|
<div style="clear: both;"></div>
|
@@ -405,7 +411,7 @@ $(function() {
|
|
405
411
|
<span class="defined">
|
406
412
|
I have a web service
|
407
413
|
<div class="definition developer">
|
408
|
-
<a href="../step_transformers.html#
|
414
|
+
<a href="../step_transformers.html#step_definition7-stepdefinition"><div class="valid"> </div></a>
|
409
415
|
</div>
|
410
416
|
</span>
|
411
417
|
|
@@ -427,10 +433,12 @@ $(function() {
|
|
427
433
|
|
428
434
|
|
429
435
|
|
430
|
-
<span class="
|
431
|
-
I have
|
436
|
+
<span class="undefined">
|
437
|
+
I have "POST" service for "/test" with the following headers
|
432
438
|
<div class="definition developer">
|
433
|
-
<a href="../step_transformers.html#
|
439
|
+
<a href="../step_transformers.html#undefined_steps">
|
440
|
+
<div class="invalid"> </div>
|
441
|
+
</a>
|
434
442
|
</div>
|
435
443
|
</span>
|
436
444
|
|
@@ -460,6 +468,22 @@ $(function() {
|
|
460
468
|
|
461
469
|
</tr>
|
462
470
|
|
471
|
+
<tr class="even">
|
472
|
+
|
473
|
+
<td>Accept-Encoding</td>
|
474
|
+
|
475
|
+
<td>gzip;q=1.0,deflate;q=0.6,identity;q=0.3</td>
|
476
|
+
|
477
|
+
</tr>
|
478
|
+
|
479
|
+
<tr class="odd">
|
480
|
+
|
481
|
+
<td>User-Agent</td>
|
482
|
+
|
483
|
+
<td>Ruby</td>
|
484
|
+
|
485
|
+
</tr>
|
486
|
+
|
463
487
|
</table>
|
464
488
|
</div>
|
465
489
|
|
@@ -479,7 +503,7 @@ $(function() {
|
|
479
503
|
<span class="defined">
|
480
504
|
I am a rest client
|
481
505
|
<div class="definition developer">
|
482
|
-
<a href="../step_transformers.html#
|
506
|
+
<a href="../step_transformers.html#step_definition10-stepdefinition"><div class="valid"> </div></a>
|
483
507
|
</div>
|
484
508
|
</span>
|
485
509
|
|
@@ -504,7 +528,7 @@ $(function() {
|
|
504
528
|
<span class="defined">
|
505
529
|
I have the following header
|
506
530
|
<div class="definition developer">
|
507
|
-
<a href="../step_transformers.html#
|
531
|
+
<a href="../step_transformers.html#step_definition5-stepdefinition"><div class="valid"> </div></a>
|
508
532
|
</div>
|
509
533
|
</span>
|
510
534
|
|
@@ -553,7 +577,7 @@ $(function() {
|
|
553
577
|
<span class="defined">
|
554
578
|
I "<span class='match'>POST</span>" to the web service with the following
|
555
579
|
<div class="definition developer">
|
556
|
-
<a href="../step_transformers.html#
|
580
|
+
<a href="../step_transformers.html#step_definition12-stepdefinition"><div class="valid"> </div></a>
|
557
581
|
</div>
|
558
582
|
</span>
|
559
583
|
|
@@ -563,7 +587,7 @@ $(function() {
|
|
563
587
|
|
564
588
|
|
565
589
|
<div class="text">
|
566
|
-
{
|
590
|
+
{"Question": "What is the meaning of life?"}
|
567
591
|
</div>
|
568
592
|
|
569
593
|
|
@@ -581,7 +605,7 @@ $(function() {
|
|
581
605
|
<span class="defined">
|
582
606
|
I receive the expected message
|
583
607
|
<div class="definition developer">
|
584
|
-
<a href="../step_transformers.html#
|
608
|
+
<a href="../step_transformers.html#step_definition15-stepdefinition"><div class="valid"> </div></a>
|
585
609
|
</div>
|
586
610
|
</span>
|
587
611
|
|
@@ -625,7 +649,7 @@ $(function() {
|
|
625
649
|
|
626
650
|
<div class="details">
|
627
651
|
<div class="meta developer">
|
628
|
-
<div class="file">features/header_options.feature:
|
652
|
+
<div class="file">features/header_options.feature:36</div>
|
629
653
|
|
630
654
|
<div style="clear:right;"></div>
|
631
655
|
<div class="tags">
|
@@ -636,6 +660,8 @@ $(function() {
|
|
636
660
|
|
637
661
|
<a href="../tags/authentication.html">@authentication</a>
|
638
662
|
|
663
|
+
<a href="../tags/header.S3.html">@header.S3</a>
|
664
|
+
|
639
665
|
</div>
|
640
666
|
|
641
667
|
<div style="clear: both;"></div>
|
@@ -656,7 +682,7 @@ $(function() {
|
|
656
682
|
<span class="defined">
|
657
683
|
I have a web service
|
658
684
|
<div class="definition developer">
|
659
|
-
<a href="../step_transformers.html#
|
685
|
+
<a href="../step_transformers.html#step_definition7-stepdefinition"><div class="valid"> </div></a>
|
660
686
|
</div>
|
661
687
|
</span>
|
662
688
|
|
@@ -678,10 +704,12 @@ $(function() {
|
|
678
704
|
|
679
705
|
|
680
706
|
|
681
|
-
<span class="
|
682
|
-
I have
|
707
|
+
<span class="undefined">
|
708
|
+
I have "GET" service for "/test" for user "test" and password "rest"
|
683
709
|
<div class="definition developer">
|
684
|
-
<a href="../step_transformers.html#
|
710
|
+
<a href="../step_transformers.html#undefined_steps">
|
711
|
+
<div class="invalid"> </div>
|
712
|
+
</a>
|
685
713
|
</div>
|
686
714
|
</span>
|
687
715
|
|
@@ -706,7 +734,7 @@ $(function() {
|
|
706
734
|
<span class="defined">
|
707
735
|
I am a rest client
|
708
736
|
<div class="definition developer">
|
709
|
-
<a href="../step_transformers.html#
|
737
|
+
<a href="../step_transformers.html#step_definition10-stepdefinition"><div class="valid"> </div></a>
|
710
738
|
</div>
|
711
739
|
</span>
|
712
740
|
|
@@ -728,10 +756,12 @@ $(function() {
|
|
728
756
|
|
729
757
|
|
730
758
|
|
731
|
-
<span class="
|
732
|
-
I have basic auth for user
|
759
|
+
<span class="undefined">
|
760
|
+
I have basic auth for user "test" and password "rest"
|
733
761
|
<div class="definition developer">
|
734
|
-
<a href="../step_transformers.html#
|
762
|
+
<a href="../step_transformers.html#undefined_steps">
|
763
|
+
<div class="invalid"> </div>
|
764
|
+
</a>
|
735
765
|
</div>
|
736
766
|
</span>
|
737
767
|
|
@@ -756,7 +786,7 @@ $(function() {
|
|
756
786
|
<span class="defined">
|
757
787
|
I "<span class='match'>GET</span>" from the web service
|
758
788
|
<div class="definition developer">
|
759
|
-
<a href="../step_transformers.html#
|
789
|
+
<a href="../step_transformers.html#step_definition11-stepdefinition"><div class="valid"> </div></a>
|
760
790
|
</div>
|
761
791
|
</span>
|
762
792
|
|
@@ -781,7 +811,7 @@ $(function() {
|
|
781
811
|
<span class="defined">
|
782
812
|
I receive the expected message
|
783
813
|
<div class="definition developer">
|
784
|
-
<a href="../step_transformers.html#
|
814
|
+
<a href="../step_transformers.html#step_definition15-stepdefinition"><div class="valid"> </div></a>
|
785
815
|
</div>
|
786
816
|
</span>
|
787
817
|
|
@@ -825,7 +855,7 @@ $(function() {
|
|
825
855
|
|
826
856
|
<div class="details">
|
827
857
|
<div class="meta developer">
|
828
|
-
<div class="file">features/header_options.feature:
|
858
|
+
<div class="file">features/header_options.feature:46</div>
|
829
859
|
|
830
860
|
<div style="clear:right;"></div>
|
831
861
|
<div class="tags">
|
@@ -836,6 +866,8 @@ $(function() {
|
|
836
866
|
|
837
867
|
<a href="../tags/authentication.html">@authentication</a>
|
838
868
|
|
869
|
+
<a href="../tags/header.S4.html">@header.S4</a>
|
870
|
+
|
839
871
|
</div>
|
840
872
|
|
841
873
|
<div style="clear: both;"></div>
|
@@ -878,10 +910,12 @@ $(function() {
|
|
878
910
|
|
879
911
|
|
880
912
|
|
881
|
-
<span class="
|
882
|
-
I have
|
913
|
+
<span class="undefined">
|
914
|
+
I have "GET" service for "/test" for user "test" and password "rest"
|
883
915
|
<div class="definition developer">
|
884
|
-
<a href="../step_transformers.html#
|
916
|
+
<a href="../step_transformers.html#undefined_steps">
|
917
|
+
<div class="invalid"> </div>
|
918
|
+
</a>
|
885
919
|
</div>
|
886
920
|
</span>
|
887
921
|
|
@@ -906,7 +940,7 @@ $(function() {
|
|
906
940
|
<span class="defined">
|
907
941
|
I am a rest client
|
908
942
|
<div class="definition developer">
|
909
|
-
<a href="../step_transformers.html#
|
943
|
+
<a href="../step_transformers.html#step_definition10-stepdefinition"><div class="valid"> </div></a>
|
910
944
|
</div>
|
911
945
|
</span>
|
912
946
|
|
@@ -928,10 +962,12 @@ $(function() {
|
|
928
962
|
|
929
963
|
|
930
964
|
|
931
|
-
<span class="
|
932
|
-
I have basic auth for user
|
965
|
+
<span class="undefined">
|
966
|
+
I have basic auth for user "test" and password "rest"
|
933
967
|
<div class="definition developer">
|
934
|
-
<a href="../step_transformers.html#
|
968
|
+
<a href="../step_transformers.html#undefined_steps">
|
969
|
+
<div class="invalid"> </div>
|
970
|
+
</a>
|
935
971
|
</div>
|
936
972
|
</span>
|
937
973
|
|
@@ -956,7 +992,7 @@ $(function() {
|
|
956
992
|
<span class="defined">
|
957
993
|
I "<span class='match'>GET</span>" from the web service
|
958
994
|
<div class="definition developer">
|
959
|
-
<a href="../step_transformers.html#
|
995
|
+
<a href="../step_transformers.html#step_definition11-stepdefinition"><div class="valid"> </div></a>
|
960
996
|
</div>
|
961
997
|
</span>
|
962
998
|
|
@@ -981,7 +1017,7 @@ $(function() {
|
|
981
1017
|
<span class="defined">
|
982
1018
|
I receive the expected message
|
983
1019
|
<div class="definition developer">
|
984
|
-
<a href="../step_transformers.html#
|
1020
|
+
<a href="../step_transformers.html#step_definition15-stepdefinition"><div class="valid"> </div></a>
|
985
1021
|
</div>
|
986
1022
|
</span>
|
987
1023
|
|
@@ -1011,9 +1047,9 @@ $(function() {
|
|
1011
1047
|
</div>
|
1012
1048
|
|
1013
1049
|
<div id="footer">
|
1014
|
-
Generated on
|
1050
|
+
Generated on Fri Jul 17 23:52:38 2015 by
|
1015
1051
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1016
|
-
0.8.7 (ruby-2.0.0).
|
1052
|
+
0.8.7.6 (ruby-2.0.0).
|
1017
1053
|
</div>
|
1018
1054
|
|
1019
1055
|
</body>
|