flights_gui_henry_tests_ds 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/Gemfile +3 -0
  2. data/features/data/home-offers-config.csv +883 -0
  3. data/features/data/host.yml +78 -0
  4. data/features/data/miles.yml +216 -0
  5. data/features/data/search.yml +27 -0
  6. data/features/data/sites.yml +49 -0
  7. data/features/data/sites.yml.orig +54 -0
  8. data/features/data/tag_microsoft.yml +68 -0
  9. data/features/step_definitions/checkout/agencia_steps.rb +6 -0
  10. data/features/step_definitions/checkout/cash_payment_steps.rb +70 -0
  11. data/features/step_definitions/checkout/chat_steps.rb +57 -0
  12. data/features/step_definitions/checkout/checkout_steps.rb +265 -0
  13. data/features/step_definitions/checkout/cupones_steps.rb +36 -0
  14. data/features/step_definitions/checkout/error_messages.rb +291 -0
  15. data/features/step_definitions/checkout/fast_checkout.rb +55 -0
  16. data/features/step_definitions/checkout/price_jump_steps.rb +70 -0
  17. data/features/step_definitions/checkout/seguros_steps.rb +79 -0
  18. data/features/step_definitions/checkout/thanks_steps.rb +81 -0
  19. data/features/step_definitions/content/contents_steps.rb +140 -0
  20. data/features/step_definitions/desambiguation/disambiguation_airports_steps.rb +82 -0
  21. data/features/step_definitions/desambiguation/disambiguation_city_steps.rb +53 -0
  22. data/features/step_definitions/filter/filters_airlines.rb +37 -0
  23. data/features/step_definitions/filter/filters_airports_steps.rb +31 -0
  24. data/features/step_definitions/filter/filters_price_steps.rb +91 -0
  25. data/features/step_definitions/filter/filters_stops_steps.rb +44 -0
  26. data/features/step_definitions/filter/filters_time_steps.rb +146 -0
  27. data/features/step_definitions/filter/matrix_steps.rb +276 -0
  28. data/features/step_definitions/landing/landing_checkout_steps.rb +49 -0
  29. data/features/step_definitions/landing/landing_filters_steps.rb +17 -0
  30. data/features/step_definitions/landing/landing_home_alerts_steps.rb +21 -0
  31. data/features/step_definitions/landing/landing_home_steps.rb +82 -0
  32. data/features/step_definitions/landing/landing_long_tail.rb +58 -0
  33. data/features/step_definitions/landing/landing_negative_steps.rb +128 -0
  34. data/features/step_definitions/landing/landing_passenger_review_steps.rb +8 -0
  35. data/features/step_definitions/landing/landing_steps.rb +348 -0
  36. data/features/step_definitions/orders/orders.rb +83 -0
  37. data/features/step_definitions/others/advancedgui_steps.rb +28 -0
  38. data/features/step_definitions/others/advancednogui_steps.rb +34 -0
  39. data/features/step_definitions/others/anticipatedsearch_steps.rb +13 -0
  40. data/features/step_definitions/others/cookies_steps.rb +40 -0
  41. data/features/step_definitions/others/flights_tracker_steps.rb +74 -0
  42. data/features/step_definitions/others/generic_steps.rb +33 -0
  43. data/features/step_definitions/others/newsletter_steps.rb +29 -0
  44. data/features/step_definitions/others/one_day_search.rb +58 -0
  45. data/features/step_definitions/others/print_steps.rb +26 -0
  46. data/features/step_definitions/others/querystringparameters_steps.rb +6 -0
  47. data/features/step_definitions/others/recommendation_steps.rb +78 -0
  48. data/features/step_definitions/others/render_steps.rb +70 -0
  49. data/features/step_definitions/others/tag_steps.rb +164 -0
  50. data/features/step_definitions/others/upgrade_bussines_steps.rb +27 -0
  51. data/features/step_definitions/results/devtools_steps.rb +10 -0
  52. data/features/step_definitions/results/itineraries_steps.rb +43 -0
  53. data/features/step_definitions/results/load_steps.rb +73 -0
  54. data/features/step_definitions/results/results_steps.rb +79 -0
  55. data/features/step_definitions/results/search_steps.rb +115 -0
  56. data/features/step_definitions/search/alerts_steps.rb +132 -0
  57. data/features/step_definitions/search/basefare_steps.rb +88 -0
  58. data/features/step_definitions/search/bestprices_steps.rb +70 -0
  59. data/features/step_definitions/search/cross_sell_row_hoteles.rb +52 -0
  60. data/features/step_definitions/search/cross_sell_steps.rb +15 -0
  61. data/features/step_definitions/search/delays_steps.rb +67 -0
  62. data/features/step_definitions/search/details_steps.rb +9 -0
  63. data/features/step_definitions/search/ecoflights_steps.rb +9 -0
  64. data/features/step_definitions/search/errors_steps.rb +24 -0
  65. data/features/step_definitions/search/fenix_steps.rb +99 -0
  66. data/features/step_definitions/search/flight_gui_steps.rb +376 -0
  67. data/features/step_definitions/search/miles_step.rb +13 -0
  68. data/features/step_definitions/search/pagination_steps.rb +29 -0
  69. data/features/step_definitions/search/reviews_step.rb +58 -0
  70. data/features/step_definitions/search/search_no_gui_steps.rb +185 -0
  71. data/features/step_definitions/search/wish_list_steps.rb +128 -0
  72. data/features/support/env.rb +86 -0
  73. data/features/support/lib/clusters.rb +6 -0
  74. data/features/support/lib/clusters/checkout_cluster.rb +111 -0
  75. data/features/support/lib/clusters/data/data.rb +33 -0
  76. data/features/support/lib/clusters/details/details_cluster.rb +36 -0
  77. data/features/support/lib/clusters/results/landing_cluster.rb +87 -0
  78. data/features/support/lib/clusters/results/render_cluster.rb +86 -0
  79. data/features/support/lib/clusters/results_cluster.rb +168 -0
  80. data/features/support/lib/helpers.rb +5 -0
  81. data/features/support/lib/helpers/browser.rb +235 -0
  82. data/features/support/lib/helpers/checkout.rb +29 -0
  83. data/features/support/lib/helpers/clusters.rb +166 -0
  84. data/features/support/lib/helpers/landing.rb +121 -0
  85. data/features/support/lib/helpers/render.rb +135 -0
  86. data/features/support/lib/price.rb +66 -0
  87. data/features/support/lib/process_manager.rb +104 -0
  88. data/features/support/lib/services.rb +4 -0
  89. data/features/support/lib/services/fenix.rb +14 -0
  90. data/features/support/lib/services/landing.rb +18 -0
  91. data/features/support/lib/services/results.rb +62 -0
  92. data/features/support/matchers.rb +120 -0
  93. data/features/support/redefinitions.rb +42 -0
  94. data/features/tests/checkout/agency.feature +27 -0
  95. data/features/tests/checkout/button_cac.feature +53 -0
  96. data/features/tests/checkout/cash_payment.feature +50 -0
  97. data/features/tests/checkout/compras_duplicadas.feature +95 -0
  98. data/features/tests/checkout/cupones.feature +34 -0
  99. data/features/tests/checkout/error_messages.feature +80 -0
  100. data/features/tests/checkout/fast_checkout.feature +82 -0
  101. data/features/tests/checkout/integration.feature +235 -0
  102. data/features/tests/checkout/low_cost.feature +62 -0
  103. data/features/tests/checkout/online_payment.feature +50 -0
  104. data/features/tests/checkout/price_jump.feature +103 -0
  105. data/features/tests/checkout/providers.feature +76 -0
  106. data/features/tests/checkout/seguros.feature +42 -0
  107. data/features/tests/contents/costs.feature +29 -0
  108. data/features/tests/contents/rules.feature +58 -0
  109. data/features/tests/contents/webcheckin.feature +26 -0
  110. data/features/tests/desambiguation/airports.feature +89 -0
  111. data/features/tests/desambiguation/airports_landing.feature +88 -0
  112. data/features/tests/desambiguation/city.feature +86 -0
  113. data/features/tests/filters/filters.feature +113 -0
  114. data/features/tests/fixes/advancedgui.feature +171 -0
  115. data/features/tests/fixes/advancednogui.feature +60 -0
  116. data/features/tests/fixes/book_no_gui.feature +21 -0
  117. data/features/tests/fixes/cross_sell_row_hoteles.feature +70 -0
  118. data/features/tests/fixes/facebook.feature +31 -0
  119. data/features/tests/fixes/landing_checkout.feature +286 -0
  120. data/features/tests/fixes/landing_home_alerts.feature +82 -0
  121. data/features/tests/fixes/matrix_stops.feature +104 -0
  122. data/features/tests/fixes/one_day_search.feature +63 -0
  123. data/features/tests/fixes/print.feature +87 -0
  124. data/features/tests/fixes/searches_no_gui.feature +85 -0
  125. data/features/tests/fixes/upgrade_bussines.feature +100 -0
  126. data/features/tests/landing/landing_alerts.feature +93 -0
  127. data/features/tests/landing/landing_filters.feature +171 -0
  128. data/features/tests/landing/landing_home.feature +68 -0
  129. data/features/tests/landing/landing_integration.feature +149 -0
  130. data/features/tests/landing/landing_long_tail.feature +169 -0
  131. data/features/tests/landing/landing_matrix.feature +152 -0
  132. data/features/tests/landing/landing_negative.feature +151 -0
  133. data/features/tests/landing/landing_orders.feature +79 -0
  134. data/features/tests/landing/landing_pagination.feature +141 -0
  135. data/features/tests/landing/landing_passenger_review.feature +135 -0
  136. data/features/tests/landing/landing_positive.feature +151 -0
  137. data/features/tests/landing/landing_reviews.feature +135 -0
  138. data/features/tests/landing/landing_sort.feature +140 -0
  139. data/features/tests/landing/landing_tags.feature +142 -0
  140. data/features/tests/matrix/matrix_airlines.feature +80 -0
  141. data/features/tests/matrix/matrix_fare_chart.feature +40 -0
  142. data/features/tests/matrix/matrix_price.feature +40 -0
  143. data/features/tests/others/alerts.feature +89 -0
  144. data/features/tests/others/anticipatedsearch.feature +82 -0
  145. data/features/tests/others/chat.feature +23 -0
  146. data/features/tests/others/flights_tracker.feature +94 -0
  147. data/features/tests/others/newsletter.feature +118 -0
  148. data/features/tests/others/querystringparameters.feature +82 -0
  149. data/features/tests/others/recommendation.feature +107 -0
  150. data/features/tests/others/semaphore.feature +206 -0
  151. data/features/tests/search/basefare.feature +89 -0
  152. data/features/tests/search/errors.feature +198 -0
  153. data/features/tests/search/itineraries.feature +92 -0
  154. data/features/tests/search/orders.feature +88 -0
  155. data/features/tests/search/pagination.feature +73 -0
  156. data/features/tests/search/reviews.feature +83 -0
  157. data/features/tests/search/searches.feature +214 -0
  158. data/features/tests/search/wish_list.feature +58 -0
  159. data/flights_gui_henry_tests.gemspec +32 -0
  160. data/henry-context.yml +17262 -0
  161. metadata +382 -0
metadata ADDED
@@ -0,0 +1,382 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flights_gui_henry_tests_ds
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.16
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - sochoa,lgonzalez
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-11-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: henry-container
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.1.82
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 0.1.82
30
+ - !ruby/object:Gem::Dependency
31
+ name: watir-webdriver
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: cucumber
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: hpricot
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: httparty
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: sixarm_ruby_unaccent
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: sanitize
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :runtime
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: mock_search
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: 0.28.1
150
+ type: :runtime
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: 0.28.1
158
+ - !ruby/object:Gem::Dependency
159
+ name: byebug
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :runtime
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ - !ruby/object:Gem::Dependency
175
+ name: geminabox
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ! '>='
180
+ - !ruby/object:Gem::Version
181
+ version: '0'
182
+ type: :development
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ! '>='
188
+ - !ruby/object:Gem::Version
189
+ version: '0'
190
+ description: test automatizado para el proyecto Destination Services
191
+ email:
192
+ - sochoa@despegar.com,lgonzalez@despegar.com
193
+ executables: []
194
+ extensions: []
195
+ extra_rdoc_files: []
196
+ files:
197
+ - flights_gui_henry_tests.gemspec
198
+ - Gemfile
199
+ - features/step_definitions/desambiguation/disambiguation_airports_steps.rb
200
+ - features/step_definitions/desambiguation/disambiguation_city_steps.rb
201
+ - features/step_definitions/filter/matrix_steps.rb
202
+ - features/step_definitions/filter/filters_airports_steps.rb
203
+ - features/step_definitions/filter/filters_stops_steps.rb
204
+ - features/step_definitions/filter/filters_airlines.rb
205
+ - features/step_definitions/filter/filters_time_steps.rb
206
+ - features/step_definitions/filter/filters_price_steps.rb
207
+ - features/step_definitions/orders/orders.rb
208
+ - features/step_definitions/others/upgrade_bussines_steps.rb
209
+ - features/step_definitions/others/advancedgui_steps.rb
210
+ - features/step_definitions/others/newsletter_steps.rb
211
+ - features/step_definitions/others/render_steps.rb
212
+ - features/step_definitions/others/advancednogui_steps.rb
213
+ - features/step_definitions/others/recommendation_steps.rb
214
+ - features/step_definitions/others/flights_tracker_steps.rb
215
+ - features/step_definitions/others/querystringparameters_steps.rb
216
+ - features/step_definitions/others/anticipatedsearch_steps.rb
217
+ - features/step_definitions/others/tag_steps.rb
218
+ - features/step_definitions/others/cookies_steps.rb
219
+ - features/step_definitions/others/one_day_search.rb
220
+ - features/step_definitions/others/generic_steps.rb
221
+ - features/step_definitions/others/print_steps.rb
222
+ - features/step_definitions/landing/landing_home_steps.rb
223
+ - features/step_definitions/landing/landing_negative_steps.rb
224
+ - features/step_definitions/landing/landing_long_tail.rb
225
+ - features/step_definitions/landing/landing_filters_steps.rb
226
+ - features/step_definitions/landing/landing_checkout_steps.rb
227
+ - features/step_definitions/landing/landing_home_alerts_steps.rb
228
+ - features/step_definitions/landing/landing_steps.rb
229
+ - features/step_definitions/landing/landing_passenger_review_steps.rb
230
+ - features/step_definitions/search/pagination_steps.rb
231
+ - features/step_definitions/search/reviews_step.rb
232
+ - features/step_definitions/search/details_steps.rb
233
+ - features/step_definitions/search/fenix_steps.rb
234
+ - features/step_definitions/search/bestprices_steps.rb
235
+ - features/step_definitions/search/cross_sell_row_hoteles.rb
236
+ - features/step_definitions/search/wish_list_steps.rb
237
+ - features/step_definitions/search/basefare_steps.rb
238
+ - features/step_definitions/search/delays_steps.rb
239
+ - features/step_definitions/search/errors_steps.rb
240
+ - features/step_definitions/search/cross_sell_steps.rb
241
+ - features/step_definitions/search/search_no_gui_steps.rb
242
+ - features/step_definitions/search/ecoflights_steps.rb
243
+ - features/step_definitions/search/alerts_steps.rb
244
+ - features/step_definitions/search/miles_step.rb
245
+ - features/step_definitions/search/flight_gui_steps.rb
246
+ - features/step_definitions/results/load_steps.rb
247
+ - features/step_definitions/results/search_steps.rb
248
+ - features/step_definitions/results/results_steps.rb
249
+ - features/step_definitions/results/itineraries_steps.rb
250
+ - features/step_definitions/results/devtools_steps.rb
251
+ - features/step_definitions/checkout/seguros_steps.rb
252
+ - features/step_definitions/checkout/cash_payment_steps.rb
253
+ - features/step_definitions/checkout/checkout_steps.rb
254
+ - features/step_definitions/checkout/price_jump_steps.rb
255
+ - features/step_definitions/checkout/agencia_steps.rb
256
+ - features/step_definitions/checkout/thanks_steps.rb
257
+ - features/step_definitions/checkout/error_messages.rb
258
+ - features/step_definitions/checkout/fast_checkout.rb
259
+ - features/step_definitions/checkout/chat_steps.rb
260
+ - features/step_definitions/checkout/cupones_steps.rb
261
+ - features/step_definitions/content/contents_steps.rb
262
+ - features/support/matchers.rb
263
+ - features/support/env.rb
264
+ - features/support/lib/clusters.rb
265
+ - features/support/lib/services/landing.rb
266
+ - features/support/lib/services/results.rb
267
+ - features/support/lib/services/fenix.rb
268
+ - features/support/lib/clusters/results_cluster.rb
269
+ - features/support/lib/clusters/details/details_cluster.rb
270
+ - features/support/lib/clusters/results/render_cluster.rb
271
+ - features/support/lib/clusters/results/landing_cluster.rb
272
+ - features/support/lib/clusters/checkout_cluster.rb
273
+ - features/support/lib/clusters/data/data.rb
274
+ - features/support/lib/services.rb
275
+ - features/support/lib/price.rb
276
+ - features/support/lib/helpers/landing.rb
277
+ - features/support/lib/helpers/render.rb
278
+ - features/support/lib/helpers/clusters.rb
279
+ - features/support/lib/helpers/checkout.rb
280
+ - features/support/lib/helpers/browser.rb
281
+ - features/support/lib/process_manager.rb
282
+ - features/support/lib/helpers.rb
283
+ - features/support/redefinitions.rb
284
+ - features/data/home-offers-config.csv
285
+ - features/data/tag_microsoft.yml
286
+ - features/data/sites.yml.orig
287
+ - features/data/search.yml
288
+ - features/data/sites.yml
289
+ - features/data/host.yml
290
+ - features/data/miles.yml
291
+ - features/tests/desambiguation/city.feature
292
+ - features/tests/desambiguation/airports.feature
293
+ - features/tests/desambiguation/airports_landing.feature
294
+ - features/tests/filters/filters.feature
295
+ - features/tests/fixes/searches_no_gui.feature
296
+ - features/tests/fixes/landing_home_alerts.feature
297
+ - features/tests/fixes/cross_sell_row_hoteles.feature
298
+ - features/tests/fixes/book_no_gui.feature
299
+ - features/tests/fixes/matrix_stops.feature
300
+ - features/tests/fixes/facebook.feature
301
+ - features/tests/fixes/upgrade_bussines.feature
302
+ - features/tests/fixes/one_day_search.feature
303
+ - features/tests/fixes/advancedgui.feature
304
+ - features/tests/fixes/print.feature
305
+ - features/tests/fixes/advancednogui.feature
306
+ - features/tests/fixes/landing_checkout.feature
307
+ - features/tests/matrix/matrix_fare_chart.feature
308
+ - features/tests/matrix/matrix_price.feature
309
+ - features/tests/matrix/matrix_airlines.feature
310
+ - features/tests/contents/webcheckin.feature
311
+ - features/tests/contents/costs.feature
312
+ - features/tests/contents/rules.feature
313
+ - features/tests/others/alerts.feature
314
+ - features/tests/others/querystringparameters.feature
315
+ - features/tests/others/anticipatedsearch.feature
316
+ - features/tests/others/semaphore.feature
317
+ - features/tests/others/chat.feature
318
+ - features/tests/others/recommendation.feature
319
+ - features/tests/others/newsletter.feature
320
+ - features/tests/others/flights_tracker.feature
321
+ - features/tests/landing/landing_matrix.feature
322
+ - features/tests/landing/landing_orders.feature
323
+ - features/tests/landing/landing_alerts.feature
324
+ - features/tests/landing/landing_home.feature
325
+ - features/tests/landing/landing_sort.feature
326
+ - features/tests/landing/landing_tags.feature
327
+ - features/tests/landing/landing_long_tail.feature
328
+ - features/tests/landing/landing_integration.feature
329
+ - features/tests/landing/landing_positive.feature
330
+ - features/tests/landing/landing_negative.feature
331
+ - features/tests/landing/landing_passenger_review.feature
332
+ - features/tests/landing/landing_pagination.feature
333
+ - features/tests/landing/landing_filters.feature
334
+ - features/tests/landing/landing_reviews.feature
335
+ - features/tests/search/reviews.feature
336
+ - features/tests/search/orders.feature
337
+ - features/tests/search/pagination.feature
338
+ - features/tests/search/errors.feature
339
+ - features/tests/search/searches.feature
340
+ - features/tests/search/wish_list.feature
341
+ - features/tests/search/itineraries.feature
342
+ - features/tests/search/basefare.feature
343
+ - features/tests/checkout/price_jump.feature
344
+ - features/tests/checkout/integration.feature
345
+ - features/tests/checkout/cupones.feature
346
+ - features/tests/checkout/low_cost.feature
347
+ - features/tests/checkout/seguros.feature
348
+ - features/tests/checkout/providers.feature
349
+ - features/tests/checkout/compras_duplicadas.feature
350
+ - features/tests/checkout/agency.feature
351
+ - features/tests/checkout/button_cac.feature
352
+ - features/tests/checkout/online_payment.feature
353
+ - features/tests/checkout/error_messages.feature
354
+ - features/tests/checkout/fast_checkout.feature
355
+ - features/tests/checkout/cash_payment.feature
356
+ - henry-context.yml
357
+ homepage:
358
+ licenses: []
359
+ post_install_message:
360
+ rdoc_options: []
361
+ require_paths:
362
+ - lib
363
+ required_ruby_version: !ruby/object:Gem::Requirement
364
+ none: false
365
+ requirements:
366
+ - - ! '>='
367
+ - !ruby/object:Gem::Version
368
+ version: '0'
369
+ required_rubygems_version: !ruby/object:Gem::Requirement
370
+ none: false
371
+ requirements:
372
+ - - ! '>='
373
+ - !ruby/object:Gem::Version
374
+ version: '0'
375
+ requirements: []
376
+ rubyforge_project:
377
+ rubygems_version: 1.8.25
378
+ signing_key:
379
+ specification_version: 3
380
+ summary: test para validar Destination Services en checkout de vuelos
381
+ test_files: []
382
+ has_rdoc: