flights_gui_tests 2.0.7 → 2.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ae4b1cc5e402d77d8f26434e55963eb16116748
4
- data.tar.gz: 4c46c9d15b21885bbbe460bff256545f00378d26
3
+ metadata.gz: 7245a5792f2ac83c55327db5aca8d46e2f0a6198
4
+ data.tar.gz: ce970750de2543f1e4cfd288dbc47a6c58eda4d7
5
5
  SHA512:
6
- metadata.gz: 1b01eb2bb5ddb4a25064bb1624030ae4c971fb56efc9d0e46762d4cfc993de39ac8a18837597724539801f9cfbeee0d3108bdc7d34ab96e7e55887194d209202
7
- data.tar.gz: 077be7fc4df50fd82080170122a8dcd4d08039e9b6165e3825f76d1a2c5fe16ea7a35300102d07791a935ee5a15d25674db217caaa218a13d5e7a5a0efaa56e7
6
+ metadata.gz: 7c6284c1978a7e1b85067a7c84df02d0765def31134df7336610ce1b57112b4c398ecab2b419a4848cd48cca49874152bcd53319df44c435b3fea62e5632265c
7
+ data.tar.gz: ee1f1aec36b9b8c1ed3315196b3ad55b9a3037533441647f2d2a06691869116994065eb8ffee35097c1d51715a174f883a31f91920b52c6c14ed06b1d79c0bc9
@@ -120,4 +120,4 @@ Cuando(/^seteo el checkout a ingresar$/) do
120
120
  step "verifico que la pagina no rompa"
121
121
  step "espero que termine de cargar la pagina de checkout"
122
122
  step "verifico que ingrese al checkout"
123
- end
123
+ end
@@ -55,6 +55,10 @@ Cuando(/^espero que (?:termine|finalize|acabe) de cargar la pagina de resultados
55
55
  @page.actualizar_filtro_element.when_not_visible(timeout=120)
56
56
  end
57
57
 
58
+ Cuando(/^espero que (?:termine|finalize|acabe) de cargar la pagina de streaming de resultados$/) do
59
+ @page.barra_progreso_element.when_not_visible(timeout=200)
60
+ end
61
+
58
62
  Entonces(/^(?:verifico|valido) que (?:traiga|vengan|tenga) resultados$/) do
59
63
  unless @page.con_resultados?
60
64
  json = @page.get_results_search_service
@@ -66,3 +70,19 @@ Entonces(/^(?:verifico|valido) que (?:traiga|vengan|tenga) resultados$/) do
66
70
  end
67
71
  @page.definir_nuevo_cluster(true) #seteo el itinerario que viene por default
68
72
  end
73
+
74
+ Cuando(/^ingreso a resultados streaming$/) do
75
+ step "fuerzo el abztesting de \"streaming\" al \"#{$HENRY_PARAMS['streaming'].to_i}\""
76
+ @page = Results::SearchPage.new($browser)
77
+ step "realizo la busqueda"
78
+ step "verifico que la pagina no rompa"
79
+ step "espero que termine de cargar la pagina de resultados"
80
+ step "espero que termine de cargar la pagina de streaming de resultados"
81
+ step "cierro popups"
82
+ @page.cargar_valores_abtesting
83
+ puts @page.abtesting
84
+ end
85
+
86
+ Entonces(/^pruebo streaming$/) do
87
+ $HENRY_PARAMS["streaming"].should be_true
88
+ end
@@ -69,6 +69,7 @@ module NewCheckout
69
69
  @tarifas['afip'] = (html/"li.tax_afip").first ? Price.new((html/"li.tax_afip span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
70
70
  @tarifas['encargos'] = (html/"li.service_taxes").first ? Price.new((html/"li.service_taxes span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
71
71
  @tarifas['seguros'] = (html/"li.destination_service_insurance").first ? Price.new((html/"li.destination_service_insurance span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
72
+ @tarifas['descuento'] = (html/"li.payment_discount").first ? Price.new((html/"li.payment_discount span.price-currency").first.inner_text.strip) : Price.new("$ 0",true)
72
73
  @tarifas['total'] = (html/"span#total-price").first ? Price.new((html/"span#total-price").first.inner_text.strip) : Price.new("$ 0",true)
73
74
  end
74
75
 
@@ -14,7 +14,7 @@ require 'uri'
14
14
  require 'henry/config'
15
15
  require 'mock_search'
16
16
  require 'auto_uy_utils'
17
- require 'roma_automation'
17
+ #require 'roma_automation'
18
18
 
19
19
  $VERBOSE = nil
20
20
 
@@ -20,7 +20,7 @@ module Results
20
20
  div(:actualizar_informacion,:class=>"update-message")
21
21
  div(:actualizar_filtro,:id=>"update-message-overlay")
22
22
  div(:nuevo_cluster,:css=>".inline-detail-clusters-style")
23
-
23
+ div(:barra_progreso,:class=>'progress-bar')
24
24
  link(:link_mejor_precio,:id=>"best-price")
25
25
 
26
26
  span(:header_mejor_precio,:class=>"nibbler-common-header-bestprice-inside ")
@@ -1,3 +1,3 @@
1
1
  module FlightsGui
2
- VERSION = "2.0.7"
2
+ VERSION = "2.0.8"
3
3
  end
@@ -10,6 +10,7 @@ Característica: results.basefare
10
10
  Cuando realizo la busqueda
11
11
  Entonces verifico que la pagina no rompa
12
12
  Cuando espero que termine de cargar la pagina de resultados
13
+ #Cuando si pruebo streaming, ingreso a resultados streaming
13
14
  Entonces verifico que traiga resultados
14
15
  Y verifico los textos de las opciones del combo
15
16
  Y verifico las ociones de ordenamiento
@@ -1585,35 +1585,6 @@ tasks:
1585
1585
  recipients:
1586
1586
  - estebanldh@gmail.com
1587
1587
  - nsimean@despegar.com
1588
- - name: checkout.busquedas_promo
1589
- class_name: Henry::Task::CucumberTask
1590
- options:
1591
- tags:
1592
- - checkout
1593
- - busquedas_promo
1594
- expand: true
1595
- no-source: true
1596
- reports:
1597
- - format: html
1598
- name: ${DATE}_${TASK_NAME}.html
1599
- recipients:
1600
- - estebanldh@gmail.com
1601
- - nsimean@despegar.com
1602
- - name: checkout.busquedas_promo.ar
1603
- class_name: Henry::Task::CucumberTask
1604
- options:
1605
- tags:
1606
- - checkout
1607
- - busquedas_promo
1608
- - ar
1609
- expand: true
1610
- no-source: true
1611
- reports:
1612
- - format: html
1613
- name: ${DATE}_${TASK_NAME}.html
1614
- recipients:
1615
- - estebanldh@gmail.com
1616
- - nsimean@despegar.com
1617
1588
  - name: results.errors
1618
1589
  class_name: Henry::Task::CucumberTask
1619
1590
  options:
@@ -3021,65 +2992,6 @@ tasks:
3021
2992
  recipients:
3022
2993
  - estebanldh@gmail.com
3023
2994
  - nsimean@despegar.com
3024
- - name: results.wish_list
3025
- class_name: Henry::Task::CucumberTask
3026
- options:
3027
- tags:
3028
- - results
3029
- - wish_list
3030
- expand: true
3031
- no-source: true
3032
- reports:
3033
- - format: html
3034
- name: ${DATE}_${TASK_NAME}.html
3035
- recipients:
3036
- - estebanldh@gmail.com
3037
- - nsimean@despegar.com
3038
- - name: results.wish_list.ar
3039
- class_name: Henry::Task::CucumberTask
3040
- options:
3041
- tags:
3042
- - results
3043
- - wish_list
3044
- - ar
3045
- expand: true
3046
- no-source: true
3047
- reports:
3048
- - format: html
3049
- name: ${DATE}_${TASK_NAME}.html
3050
- recipients:
3051
- - estebanldh@gmail.com
3052
- - nsimean@despegar.com
3053
- - name: results.wish_list.br
3054
- class_name: Henry::Task::CucumberTask
3055
- options:
3056
- tags:
3057
- - results
3058
- - wish_list
3059
- - br
3060
- expand: true
3061
- no-source: true
3062
- reports:
3063
- - format: html
3064
- name: ${DATE}_${TASK_NAME}.html
3065
- recipients:
3066
- - estebanldh@gmail.com
3067
- - nsimean@despegar.com
3068
- - name: results.wish_list.us
3069
- class_name: Henry::Task::CucumberTask
3070
- options:
3071
- tags:
3072
- - results
3073
- - wish_list
3074
- - us
3075
- expand: true
3076
- no-source: true
3077
- reports:
3078
- - format: html
3079
- name: ${DATE}_${TASK_NAME}.html
3080
- recipients:
3081
- - estebanldh@gmail.com
3082
- - nsimean@despegar.com
3083
2995
  - name: results.matrix_fare_chart
3084
2996
  class_name: Henry::Task::CucumberTask
3085
2997
  options:
@@ -3976,65 +3888,6 @@ tasks:
3976
3888
  recipients:
3977
3889
  - estebanldh@gmail.com
3978
3890
  - nsimean@despegar.com
3979
- - name: results.search_2_ow
3980
- class_name: Henry::Task::CucumberTask
3981
- options:
3982
- tags:
3983
- - results
3984
- - search_2_ow
3985
- expand: true
3986
- no-source: true
3987
- reports:
3988
- - format: html
3989
- name: ${DATE}_${TASK_NAME}.html
3990
- recipients:
3991
- - estebanldh@gmail.com
3992
- - nsimean@despegar.com
3993
- - name: results.search_2_ow.br
3994
- class_name: Henry::Task::CucumberTask
3995
- options:
3996
- tags:
3997
- - results
3998
- - search_2_ow
3999
- - br
4000
- expand: true
4001
- no-source: true
4002
- reports:
4003
- - format: html
4004
- name: ${DATE}_${TASK_NAME}.html
4005
- recipients:
4006
- - estebanldh@gmail.com
4007
- - nsimean@despegar.com
4008
- - name: results.search_2_ow.br
4009
- class_name: Henry::Task::CucumberTask
4010
- options:
4011
- tags:
4012
- - results
4013
- - search_2_ow
4014
- - br
4015
- expand: true
4016
- no-source: true
4017
- reports:
4018
- - format: html
4019
- name: ${DATE}_${TASK_NAME}.html
4020
- recipients:
4021
- - estebanldh@gmail.com
4022
- - nsimean@despegar.com
4023
- - name: results.search_2_ow.br
4024
- class_name: Henry::Task::CucumberTask
4025
- options:
4026
- tags:
4027
- - results
4028
- - search_2_ow
4029
- - br
4030
- expand: true
4031
- no-source: true
4032
- reports:
4033
- - format: html
4034
- name: ${DATE}_${TASK_NAME}.html
4035
- recipients:
4036
- - estebanldh@gmail.com
4037
- - nsimean@despegar.com
4038
3891
  - name: landing.sort
4039
3892
  class_name: Henry::Task::CucumberTask
4040
3893
  options:
@@ -10250,12 +10103,12 @@ tasks:
10250
10103
  recipients:
10251
10104
  - estebanldh@gmail.com
10252
10105
  - nsimean@despegar.com
10253
- - name: flights_tracker.search
10106
+ - name: checkout.compra_duplicada
10254
10107
  class_name: Henry::Task::CucumberTask
10255
10108
  options:
10256
10109
  tags:
10257
- - flights_tracker
10258
- - search
10110
+ - checkout
10111
+ - compra_duplicada
10259
10112
  expand: true
10260
10113
  no-source: true
10261
10114
  reports:
@@ -10264,12 +10117,12 @@ tasks:
10264
10117
  recipients:
10265
10118
  - estebanldh@gmail.com
10266
10119
  - nsimean@despegar.com
10267
- - name: flights_tracker.search.ar
10120
+ - name: checkout.compra_duplicada.ar
10268
10121
  class_name: Henry::Task::CucumberTask
10269
10122
  options:
10270
10123
  tags:
10271
- - flights_tracker
10272
- - search
10124
+ - checkout
10125
+ - compra_duplicada
10273
10126
  - ar
10274
10127
  expand: true
10275
10128
  no-source: true
@@ -10279,13 +10132,14 @@ tasks:
10279
10132
  recipients:
10280
10133
  - estebanldh@gmail.com
10281
10134
  - nsimean@despegar.com
10282
- - name: flights_tracker.search.br
10135
+ - name: checkout.compra_duplicada.ar.roundtrip
10283
10136
  class_name: Henry::Task::CucumberTask
10284
10137
  options:
10285
10138
  tags:
10286
- - flights_tracker
10287
- - search
10288
- - br
10139
+ - checkout
10140
+ - compra_duplicada
10141
+ - ar
10142
+ - roundtrip
10289
10143
  expand: true
10290
10144
  no-source: true
10291
10145
  reports:
@@ -10294,13 +10148,14 @@ tasks:
10294
10148
  recipients:
10295
10149
  - estebanldh@gmail.com
10296
10150
  - nsimean@despegar.com
10297
- - name: flights_tracker.search.co
10151
+ - name: checkout.compra_duplicada.ar.oneway
10298
10152
  class_name: Henry::Task::CucumberTask
10299
10153
  options:
10300
10154
  tags:
10301
- - flights_tracker
10302
- - search
10303
- - co
10155
+ - checkout
10156
+ - compra_duplicada
10157
+ - ar
10158
+ - oneway
10304
10159
  expand: true
10305
10160
  no-source: true
10306
10161
  reports:
@@ -10309,13 +10164,14 @@ tasks:
10309
10164
  recipients:
10310
10165
  - estebanldh@gmail.com
10311
10166
  - nsimean@despegar.com
10312
- - name: flights_tracker.search.cl
10167
+ - name: checkout.compra_duplicada.ar.multipledestinations
10313
10168
  class_name: Henry::Task::CucumberTask
10314
10169
  options:
10315
10170
  tags:
10316
- - flights_tracker
10317
- - search
10318
- - cl
10171
+ - checkout
10172
+ - compra_duplicada
10173
+ - ar
10174
+ - multipledestinations
10319
10175
  expand: true
10320
10176
  no-source: true
10321
10177
  reports:
@@ -10324,13 +10180,13 @@ tasks:
10324
10180
  recipients:
10325
10181
  - estebanldh@gmail.com
10326
10182
  - nsimean@despegar.com
10327
- - name: flights_tracker.search.cr
10183
+ - name: checkout.compra_duplicada.mx
10328
10184
  class_name: Henry::Task::CucumberTask
10329
10185
  options:
10330
10186
  tags:
10331
- - flights_tracker
10332
- - search
10333
- - cr
10187
+ - checkout
10188
+ - compra_duplicada
10189
+ - mx
10334
10190
  expand: true
10335
10191
  no-source: true
10336
10192
  reports:
@@ -10339,13 +10195,14 @@ tasks:
10339
10195
  recipients:
10340
10196
  - estebanldh@gmail.com
10341
10197
  - nsimean@despegar.com
10342
- - name: flights_tracker.search.ec
10198
+ - name: checkout.compra_duplicada.mx.roundtrip
10343
10199
  class_name: Henry::Task::CucumberTask
10344
10200
  options:
10345
10201
  tags:
10346
- - flights_tracker
10347
- - search
10348
- - ec
10202
+ - checkout
10203
+ - compra_duplicada
10204
+ - mx
10205
+ - roundtrip
10349
10206
  expand: true
10350
10207
  no-source: true
10351
10208
  reports:
@@ -10354,13 +10211,14 @@ tasks:
10354
10211
  recipients:
10355
10212
  - estebanldh@gmail.com
10356
10213
  - nsimean@despegar.com
10357
- - name: flights_tracker.search.mx
10214
+ - name: checkout.compra_duplicada.mx.oneway
10358
10215
  class_name: Henry::Task::CucumberTask
10359
10216
  options:
10360
10217
  tags:
10361
- - flights_tracker
10362
- - search
10218
+ - checkout
10219
+ - compra_duplicada
10363
10220
  - mx
10221
+ - oneway
10364
10222
  expand: true
10365
10223
  no-source: true
10366
10224
  reports:
@@ -10369,13 +10227,14 @@ tasks:
10369
10227
  recipients:
10370
10228
  - estebanldh@gmail.com
10371
10229
  - nsimean@despegar.com
10372
- - name: flights_tracker.search.pa
10230
+ - name: checkout.compra_duplicada.mx.multipledestinations
10373
10231
  class_name: Henry::Task::CucumberTask
10374
10232
  options:
10375
10233
  tags:
10376
- - flights_tracker
10377
- - search
10378
- - pa
10234
+ - checkout
10235
+ - compra_duplicada
10236
+ - mx
10237
+ - multipledestinations
10379
10238
  expand: true
10380
10239
  no-source: true
10381
10240
  reports:
@@ -10384,13 +10243,13 @@ tasks:
10384
10243
  recipients:
10385
10244
  - estebanldh@gmail.com
10386
10245
  - nsimean@despegar.com
10387
- - name: flights_tracker.search.pe
10246
+ - name: checkout.compra_duplicada.us
10388
10247
  class_name: Henry::Task::CucumberTask
10389
10248
  options:
10390
10249
  tags:
10391
- - flights_tracker
10392
- - search
10393
- - pe
10250
+ - checkout
10251
+ - compra_duplicada
10252
+ - us
10394
10253
  expand: true
10395
10254
  no-source: true
10396
10255
  reports:
@@ -10399,13 +10258,14 @@ tasks:
10399
10258
  recipients:
10400
10259
  - estebanldh@gmail.com
10401
10260
  - nsimean@despegar.com
10402
- - name: flights_tracker.search.us
10261
+ - name: checkout.compra_duplicada.us.roundtrip
10403
10262
  class_name: Henry::Task::CucumberTask
10404
10263
  options:
10405
10264
  tags:
10406
- - flights_tracker
10407
- - search
10265
+ - checkout
10266
+ - compra_duplicada
10408
10267
  - us
10268
+ - roundtrip
10409
10269
  expand: true
10410
10270
  no-source: true
10411
10271
  reports:
@@ -10414,13 +10274,14 @@ tasks:
10414
10274
  recipients:
10415
10275
  - estebanldh@gmail.com
10416
10276
  - nsimean@despegar.com
10417
- - name: flights_tracker.search.uy
10277
+ - name: checkout.compra_duplicada.us.oneway
10418
10278
  class_name: Henry::Task::CucumberTask
10419
10279
  options:
10420
10280
  tags:
10421
- - flights_tracker
10422
- - search
10423
- - uy
10281
+ - checkout
10282
+ - compra_duplicada
10283
+ - us
10284
+ - oneway
10424
10285
  expand: true
10425
10286
  no-source: true
10426
10287
  reports:
@@ -10429,13 +10290,14 @@ tasks:
10429
10290
  recipients:
10430
10291
  - estebanldh@gmail.com
10431
10292
  - nsimean@despegar.com
10432
- - name: flights_tracker.search.ve
10293
+ - name: checkout.compra_duplicada.us.multipledestinations
10433
10294
  class_name: Henry::Task::CucumberTask
10434
10295
  options:
10435
10296
  tags:
10436
- - flights_tracker
10437
- - search
10438
- - ve
10297
+ - checkout
10298
+ - compra_duplicada
10299
+ - us
10300
+ - multipledestinations
10439
10301
  expand: true
10440
10302
  no-source: true
10441
10303
  reports:
@@ -10444,13 +10306,14 @@ tasks:
10444
10306
  recipients:
10445
10307
  - estebanldh@gmail.com
10446
10308
  - nsimean@despegar.com
10447
- - name: checkout.low_cost
10309
+ - name: checkout.compra_duplicada.br
10448
10310
  class_name: Henry::Task::CucumberTask
10449
10311
  options:
10450
10312
  tags:
10451
10313
  - checkout
10452
- - low_cost
10453
- expand: true
10314
+ - compra_duplicada
10315
+ - br
10316
+ expand: true
10454
10317
  no-source: true
10455
10318
  reports:
10456
10319
  - format: html
@@ -10458,13 +10321,14 @@ tasks:
10458
10321
  recipients:
10459
10322
  - estebanldh@gmail.com
10460
10323
  - nsimean@despegar.com
10461
- - name: checkout.low_cost.br
10324
+ - name: checkout.compra_duplicada.br.roundtrip
10462
10325
  class_name: Henry::Task::CucumberTask
10463
10326
  options:
10464
10327
  tags:
10465
10328
  - checkout
10466
- - low_cost
10329
+ - compra_duplicada
10467
10330
  - br
10331
+ - roundtrip
10468
10332
  expand: true
10469
10333
  no-source: true
10470
10334
  reports:
@@ -10473,12 +10337,14 @@ tasks:
10473
10337
  recipients:
10474
10338
  - estebanldh@gmail.com
10475
10339
  - nsimean@despegar.com
10476
- - name: checkout.error_messages
10340
+ - name: checkout.compra_duplicada.br.oneway
10477
10341
  class_name: Henry::Task::CucumberTask
10478
10342
  options:
10479
10343
  tags:
10480
10344
  - checkout
10481
- - error_messages
10345
+ - compra_duplicada
10346
+ - br
10347
+ - oneway
10482
10348
  expand: true
10483
10349
  no-source: true
10484
10350
  reports:
@@ -10487,13 +10353,14 @@ tasks:
10487
10353
  recipients:
10488
10354
  - estebanldh@gmail.com
10489
10355
  - nsimean@despegar.com
10490
- - name: checkout.error_messages.ar
10356
+ - name: checkout.compra_duplicada.br.multipledestinations
10491
10357
  class_name: Henry::Task::CucumberTask
10492
10358
  options:
10493
10359
  tags:
10494
10360
  - checkout
10495
- - error_messages
10496
- - ar
10361
+ - compra_duplicada
10362
+ - br
10363
+ - multipledestinations
10497
10364
  expand: true
10498
10365
  no-source: true
10499
10366
  reports:
@@ -10502,14 +10369,12 @@ tasks:
10502
10369
  recipients:
10503
10370
  - estebanldh@gmail.com
10504
10371
  - nsimean@despegar.com
10505
- - name: checkout.error_messages.ar.roundtrip
10372
+ - name: results.search_2_ow
10506
10373
  class_name: Henry::Task::CucumberTask
10507
10374
  options:
10508
10375
  tags:
10509
- - checkout
10510
- - error_messages
10511
- - ar
10512
- - roundtrip
10376
+ - results
10377
+ - search_2_ow
10513
10378
  expand: true
10514
10379
  no-source: true
10515
10380
  reports:
@@ -10518,14 +10383,13 @@ tasks:
10518
10383
  recipients:
10519
10384
  - estebanldh@gmail.com
10520
10385
  - nsimean@despegar.com
10521
- - name: checkout.error_messages.ar.oneway
10386
+ - name: results.search_2_ow.br
10522
10387
  class_name: Henry::Task::CucumberTask
10523
10388
  options:
10524
10389
  tags:
10525
- - checkout
10526
- - error_messages
10527
- - ar
10528
- - oneway
10390
+ - results
10391
+ - search_2_ow
10392
+ - br
10529
10393
  expand: true
10530
10394
  no-source: true
10531
10395
  reports:
@@ -10534,14 +10398,13 @@ tasks:
10534
10398
  recipients:
10535
10399
  - estebanldh@gmail.com
10536
10400
  - nsimean@despegar.com
10537
- - name: checkout.error_messages.ar.multipledestinations
10401
+ - name: results.search_2_ow.br
10538
10402
  class_name: Henry::Task::CucumberTask
10539
10403
  options:
10540
10404
  tags:
10541
- - checkout
10542
- - error_messages
10543
- - ar
10544
- - multipledestinations
10405
+ - results
10406
+ - search_2_ow
10407
+ - br
10545
10408
  expand: true
10546
10409
  no-source: true
10547
10410
  reports:
@@ -10550,13 +10413,13 @@ tasks:
10550
10413
  recipients:
10551
10414
  - estebanldh@gmail.com
10552
10415
  - nsimean@despegar.com
10553
- - name: checkout.error_messages.us
10416
+ - name: results.search_2_ow.br
10554
10417
  class_name: Henry::Task::CucumberTask
10555
10418
  options:
10556
10419
  tags:
10557
- - checkout
10558
- - error_messages
10559
- - us
10420
+ - results
10421
+ - search_2_ow
10422
+ - br
10560
10423
  expand: true
10561
10424
  no-source: true
10562
10425
  reports:
@@ -10565,14 +10428,13 @@ tasks:
10565
10428
  recipients:
10566
10429
  - estebanldh@gmail.com
10567
10430
  - nsimean@despegar.com
10568
- - name: checkout.error_messages.us.roundtrip
10431
+ - name: results.search_2_ow.ar
10569
10432
  class_name: Henry::Task::CucumberTask
10570
10433
  options:
10571
10434
  tags:
10572
- - checkout
10573
- - error_messages
10574
- - us
10575
- - roundtrip
10435
+ - results
10436
+ - search_2_ow
10437
+ - ar
10576
10438
  expand: true
10577
10439
  no-source: true
10578
10440
  reports:
@@ -10581,14 +10443,13 @@ tasks:
10581
10443
  recipients:
10582
10444
  - estebanldh@gmail.com
10583
10445
  - nsimean@despegar.com
10584
- - name: checkout.error_messages.us.oneway
10446
+ - name: results.search_2_ow.br
10585
10447
  class_name: Henry::Task::CucumberTask
10586
10448
  options:
10587
10449
  tags:
10588
- - checkout
10589
- - error_messages
10590
- - us
10591
- - oneway
10450
+ - results
10451
+ - search_2_ow
10452
+ - br
10592
10453
  expand: true
10593
10454
  no-source: true
10594
10455
  reports:
@@ -10597,14 +10458,12 @@ tasks:
10597
10458
  recipients:
10598
10459
  - estebanldh@gmail.com
10599
10460
  - nsimean@despegar.com
10600
- - name: checkout.error_messages.us.multipledestinations
10461
+ - name: checkout.busquedas_promo
10601
10462
  class_name: Henry::Task::CucumberTask
10602
10463
  options:
10603
10464
  tags:
10604
10465
  - checkout
10605
- - error_messages
10606
- - us
10607
- - multipledestinations
10466
+ - busquedas_promo
10608
10467
  expand: true
10609
10468
  no-source: true
10610
10469
  reports:
@@ -10613,13 +10472,13 @@ tasks:
10613
10472
  recipients:
10614
10473
  - estebanldh@gmail.com
10615
10474
  - nsimean@despegar.com
10616
- - name: checkout.error_messages.ve
10475
+ - name: checkout.busquedas_promo.ar
10617
10476
  class_name: Henry::Task::CucumberTask
10618
10477
  options:
10619
10478
  tags:
10620
10479
  - checkout
10621
- - error_messages
10622
- - ve
10480
+ - busquedas_promo
10481
+ - ar
10623
10482
  expand: true
10624
10483
  no-source: true
10625
10484
  reports:
@@ -10628,14 +10487,12 @@ tasks:
10628
10487
  recipients:
10629
10488
  - estebanldh@gmail.com
10630
10489
  - nsimean@despegar.com
10631
- - name: checkout.error_messages.ve.roundtrip
10490
+ - name: checkout.online_payment
10632
10491
  class_name: Henry::Task::CucumberTask
10633
10492
  options:
10634
10493
  tags:
10635
10494
  - checkout
10636
- - error_messages
10637
- - ve
10638
- - roundtrip
10495
+ - online_payment
10639
10496
  expand: true
10640
10497
  no-source: true
10641
10498
  reports:
@@ -10644,14 +10501,13 @@ tasks:
10644
10501
  recipients:
10645
10502
  - estebanldh@gmail.com
10646
10503
  - nsimean@despegar.com
10647
- - name: checkout.error_messages.ve.oneway
10504
+ - name: checkout.online_payment.ar
10648
10505
  class_name: Henry::Task::CucumberTask
10649
10506
  options:
10650
10507
  tags:
10651
10508
  - checkout
10652
- - error_messages
10653
- - ve
10654
- - oneway
10509
+ - online_payment
10510
+ - ar
10655
10511
  expand: true
10656
10512
  no-source: true
10657
10513
  reports:
@@ -10660,14 +10516,13 @@ tasks:
10660
10516
  recipients:
10661
10517
  - estebanldh@gmail.com
10662
10518
  - nsimean@despegar.com
10663
- - name: checkout.error_messages.ve.multipledestinations
10519
+ - name: checkout.online_payment.pe
10664
10520
  class_name: Henry::Task::CucumberTask
10665
10521
  options:
10666
10522
  tags:
10667
10523
  - checkout
10668
- - error_messages
10669
- - ve
10670
- - multipledestinations
10524
+ - online_payment
10525
+ - pe
10671
10526
  expand: true
10672
10527
  no-source: true
10673
10528
  reports:
@@ -10676,12 +10531,12 @@ tasks:
10676
10531
  recipients:
10677
10532
  - estebanldh@gmail.com
10678
10533
  - nsimean@despegar.com
10679
- - name: checkout.error_messages.br
10534
+ - name: checkout.online_payment.br
10680
10535
  class_name: Henry::Task::CucumberTask
10681
10536
  options:
10682
10537
  tags:
10683
10538
  - checkout
10684
- - error_messages
10539
+ - online_payment
10685
10540
  - br
10686
10541
  expand: true
10687
10542
  no-source: true
@@ -10691,14 +10546,13 @@ tasks:
10691
10546
  recipients:
10692
10547
  - estebanldh@gmail.com
10693
10548
  - nsimean@despegar.com
10694
- - name: checkout.error_messages.br.roundtrip
10549
+ - name: checkout.online_payment.co
10695
10550
  class_name: Henry::Task::CucumberTask
10696
10551
  options:
10697
10552
  tags:
10698
10553
  - checkout
10699
- - error_messages
10700
- - br
10701
- - roundtrip
10554
+ - online_payment
10555
+ - co
10702
10556
  expand: true
10703
10557
  no-source: true
10704
10558
  reports:
@@ -10707,14 +10561,13 @@ tasks:
10707
10561
  recipients:
10708
10562
  - estebanldh@gmail.com
10709
10563
  - nsimean@despegar.com
10710
- - name: checkout.error_messages.br.oneway
10564
+ - name: checkout.online_payment.mx
10711
10565
  class_name: Henry::Task::CucumberTask
10712
10566
  options:
10713
10567
  tags:
10714
10568
  - checkout
10715
- - error_messages
10716
- - br
10717
- - oneway
10569
+ - online_payment
10570
+ - mx
10718
10571
  expand: true
10719
10572
  no-source: true
10720
10573
  reports:
@@ -10723,12 +10576,13 @@ tasks:
10723
10576
  recipients:
10724
10577
  - estebanldh@gmail.com
10725
10578
  - nsimean@despegar.com
10726
- - name: checkout.fast_checkout
10579
+ - name: checkout.online_payment.ve
10727
10580
  class_name: Henry::Task::CucumberTask
10728
10581
  options:
10729
10582
  tags:
10730
10583
  - checkout
10731
- - fast_checkout
10584
+ - online_payment
10585
+ - ve
10732
10586
  expand: true
10733
10587
  no-source: true
10734
10588
  reports:
@@ -10737,13 +10591,13 @@ tasks:
10737
10591
  recipients:
10738
10592
  - estebanldh@gmail.com
10739
10593
  - nsimean@despegar.com
10740
- - name: checkout.fast_checkout.ar
10594
+ - name: checkout.online_payment.cl
10741
10595
  class_name: Henry::Task::CucumberTask
10742
10596
  options:
10743
10597
  tags:
10744
10598
  - checkout
10745
- - fast_checkout
10746
- - ar
10599
+ - online_payment
10600
+ - cl
10747
10601
  expand: true
10748
10602
  no-source: true
10749
10603
  reports:
@@ -10752,14 +10606,13 @@ tasks:
10752
10606
  recipients:
10753
10607
  - estebanldh@gmail.com
10754
10608
  - nsimean@despegar.com
10755
- - name: checkout.fast_checkout.ar.roundtrip
10609
+ - name: checkout.online_payment.cr
10756
10610
  class_name: Henry::Task::CucumberTask
10757
10611
  options:
10758
10612
  tags:
10759
10613
  - checkout
10760
- - fast_checkout
10761
- - ar
10762
- - roundtrip
10614
+ - online_payment
10615
+ - cr
10763
10616
  expand: true
10764
10617
  no-source: true
10765
10618
  reports:
@@ -10768,14 +10621,13 @@ tasks:
10768
10621
  recipients:
10769
10622
  - estebanldh@gmail.com
10770
10623
  - nsimean@despegar.com
10771
- - name: checkout.fast_checkout.ar.oneway
10624
+ - name: checkout.online_payment.ec
10772
10625
  class_name: Henry::Task::CucumberTask
10773
10626
  options:
10774
10627
  tags:
10775
10628
  - checkout
10776
- - fast_checkout
10777
- - ar
10778
- - oneway
10629
+ - online_payment
10630
+ - ec
10779
10631
  expand: true
10780
10632
  no-source: true
10781
10633
  reports:
@@ -10784,14 +10636,13 @@ tasks:
10784
10636
  recipients:
10785
10637
  - estebanldh@gmail.com
10786
10638
  - nsimean@despegar.com
10787
- - name: checkout.fast_checkout.ar.multipledestinations
10639
+ - name: checkout.online_payment.pa
10788
10640
  class_name: Henry::Task::CucumberTask
10789
10641
  options:
10790
10642
  tags:
10791
10643
  - checkout
10792
- - fast_checkout
10793
- - ar
10794
- - multipledestinations
10644
+ - online_payment
10645
+ - pa
10795
10646
  expand: true
10796
10647
  no-source: true
10797
10648
  reports:
@@ -10800,12 +10651,12 @@ tasks:
10800
10651
  recipients:
10801
10652
  - estebanldh@gmail.com
10802
10653
  - nsimean@despegar.com
10803
- - name: checkout.fast_checkout.us
10654
+ - name: checkout.online_payment.us
10804
10655
  class_name: Henry::Task::CucumberTask
10805
10656
  options:
10806
10657
  tags:
10807
10658
  - checkout
10808
- - fast_checkout
10659
+ - online_payment
10809
10660
  - us
10810
10661
  expand: true
10811
10662
  no-source: true
@@ -10815,14 +10666,13 @@ tasks:
10815
10666
  recipients:
10816
10667
  - estebanldh@gmail.com
10817
10668
  - nsimean@despegar.com
10818
- - name: checkout.fast_checkout.us.roundtrip
10669
+ - name: checkout.online_payment.uy
10819
10670
  class_name: Henry::Task::CucumberTask
10820
10671
  options:
10821
10672
  tags:
10822
10673
  - checkout
10823
- - fast_checkout
10824
- - us
10825
- - roundtrip
10674
+ - online_payment
10675
+ - uy
10826
10676
  expand: true
10827
10677
  no-source: true
10828
10678
  reports:
@@ -10831,14 +10681,13 @@ tasks:
10831
10681
  recipients:
10832
10682
  - estebanldh@gmail.com
10833
10683
  - nsimean@despegar.com
10834
- - name: checkout.fast_checkout.us.oneway
10684
+ - name: checkout.online_payment.pr
10835
10685
  class_name: Henry::Task::CucumberTask
10836
10686
  options:
10837
10687
  tags:
10838
10688
  - checkout
10839
- - fast_checkout
10840
- - us
10841
- - oneway
10689
+ - online_payment
10690
+ - pr
10842
10691
  expand: true
10843
10692
  no-source: true
10844
10693
  reports:
@@ -10847,14 +10696,12 @@ tasks:
10847
10696
  recipients:
10848
10697
  - estebanldh@gmail.com
10849
10698
  - nsimean@despegar.com
10850
- - name: checkout.fast_checkout.us.multipledestinations
10699
+ - name: checkout.cupones
10851
10700
  class_name: Henry::Task::CucumberTask
10852
10701
  options:
10853
10702
  tags:
10854
10703
  - checkout
10855
- - fast_checkout
10856
- - us
10857
- - multipledestinations
10704
+ - cupones
10858
10705
  expand: true
10859
10706
  no-source: true
10860
10707
  reports:
@@ -10863,13 +10710,13 @@ tasks:
10863
10710
  recipients:
10864
10711
  - estebanldh@gmail.com
10865
10712
  - nsimean@despegar.com
10866
- - name: checkout.fast_checkout.br
10713
+ - name: checkout.cupones.ar
10867
10714
  class_name: Henry::Task::CucumberTask
10868
10715
  options:
10869
10716
  tags:
10870
10717
  - checkout
10871
- - fast_checkout
10872
- - br
10718
+ - cupones
10719
+ - ar
10873
10720
  expand: true
10874
10721
  no-source: true
10875
10722
  reports:
@@ -10878,14 +10725,12 @@ tasks:
10878
10725
  recipients:
10879
10726
  - estebanldh@gmail.com
10880
10727
  - nsimean@despegar.com
10881
- - name: checkout.fast_checkout.br.roundtrip
10728
+ - name: checkout.cash_payment
10882
10729
  class_name: Henry::Task::CucumberTask
10883
10730
  options:
10884
10731
  tags:
10885
10732
  - checkout
10886
- - fast_checkout
10887
- - br
10888
- - roundtrip
10733
+ - cash_payment
10889
10734
  expand: true
10890
10735
  no-source: true
10891
10736
  reports:
@@ -10894,14 +10739,13 @@ tasks:
10894
10739
  recipients:
10895
10740
  - estebanldh@gmail.com
10896
10741
  - nsimean@despegar.com
10897
- - name: checkout.fast_checkout.br.oneway
10742
+ - name: checkout.cash_payment.ar
10898
10743
  class_name: Henry::Task::CucumberTask
10899
10744
  options:
10900
10745
  tags:
10901
10746
  - checkout
10902
- - fast_checkout
10903
- - br
10904
- - oneway
10747
+ - cash_payment
10748
+ - ar
10905
10749
  expand: true
10906
10750
  no-source: true
10907
10751
  reports:
@@ -10910,14 +10754,13 @@ tasks:
10910
10754
  recipients:
10911
10755
  - estebanldh@gmail.com
10912
10756
  - nsimean@despegar.com
10913
- - name: checkout.fast_checkout.br.multipledestinations
10757
+ - name: checkout.cash_payment.pe
10914
10758
  class_name: Henry::Task::CucumberTask
10915
10759
  options:
10916
10760
  tags:
10917
10761
  - checkout
10918
- - fast_checkout
10919
- - br
10920
- - multipledestinations
10762
+ - cash_payment
10763
+ - pe
10921
10764
  expand: true
10922
10765
  no-source: true
10923
10766
  reports:
@@ -10926,12 +10769,13 @@ tasks:
10926
10769
  recipients:
10927
10770
  - estebanldh@gmail.com
10928
10771
  - nsimean@despegar.com
10929
- - name: checkout.price_jump
10772
+ - name: checkout.cash_payment.mx
10930
10773
  class_name: Henry::Task::CucumberTask
10931
10774
  options:
10932
10775
  tags:
10933
10776
  - checkout
10934
- - price_jump
10777
+ - cash_payment
10778
+ - mx
10935
10779
  expand: true
10936
10780
  no-source: true
10937
10781
  reports:
@@ -10940,13 +10784,13 @@ tasks:
10940
10784
  recipients:
10941
10785
  - estebanldh@gmail.com
10942
10786
  - nsimean@despegar.com
10943
- - name: checkout.price_jump.ar
10787
+ - name: checkout.cash_payment.br
10944
10788
  class_name: Henry::Task::CucumberTask
10945
10789
  options:
10946
10790
  tags:
10947
10791
  - checkout
10948
- - price_jump
10949
- - ar
10792
+ - cash_payment
10793
+ - br
10950
10794
  expand: true
10951
10795
  no-source: true
10952
10796
  reports:
@@ -10955,14 +10799,13 @@ tasks:
10955
10799
  recipients:
10956
10800
  - estebanldh@gmail.com
10957
10801
  - nsimean@despegar.com
10958
- - name: checkout.price_jump.ar.roundtrip
10802
+ - name: checkout.cash_payment.co
10959
10803
  class_name: Henry::Task::CucumberTask
10960
10804
  options:
10961
10805
  tags:
10962
10806
  - checkout
10963
- - price_jump
10964
- - ar
10965
- - roundtrip
10807
+ - cash_payment
10808
+ - co
10966
10809
  expand: true
10967
10810
  no-source: true
10968
10811
  reports:
@@ -10971,13 +10814,13 @@ tasks:
10971
10814
  recipients:
10972
10815
  - estebanldh@gmail.com
10973
10816
  - nsimean@despegar.com
10974
- - name: checkout.price_jump.us
10817
+ - name: checkout.cash_payment.ve
10975
10818
  class_name: Henry::Task::CucumberTask
10976
10819
  options:
10977
10820
  tags:
10978
10821
  - checkout
10979
- - price_jump
10980
- - us
10822
+ - cash_payment
10823
+ - ve
10981
10824
  expand: true
10982
10825
  no-source: true
10983
10826
  reports:
@@ -10986,14 +10829,13 @@ tasks:
10986
10829
  recipients:
10987
10830
  - estebanldh@gmail.com
10988
10831
  - nsimean@despegar.com
10989
- - name: checkout.price_jump.us.multipledestinations
10832
+ - name: checkout.cash_payment.cl
10990
10833
  class_name: Henry::Task::CucumberTask
10991
10834
  options:
10992
10835
  tags:
10993
10836
  - checkout
10994
- - price_jump
10995
- - us
10996
- - multipledestinations
10837
+ - cash_payment
10838
+ - cl
10997
10839
  expand: true
10998
10840
  no-source: true
10999
10841
  reports:
@@ -11002,13 +10844,13 @@ tasks:
11002
10844
  recipients:
11003
10845
  - estebanldh@gmail.com
11004
10846
  - nsimean@despegar.com
11005
- - name: checkout.price_jump.br
10847
+ - name: checkout.cash_payment.cr
11006
10848
  class_name: Henry::Task::CucumberTask
11007
10849
  options:
11008
10850
  tags:
11009
10851
  - checkout
11010
- - price_jump
11011
- - br
10852
+ - cash_payment
10853
+ - cr
11012
10854
  expand: true
11013
10855
  no-source: true
11014
10856
  reports:
@@ -11017,14 +10859,13 @@ tasks:
11017
10859
  recipients:
11018
10860
  - estebanldh@gmail.com
11019
10861
  - nsimean@despegar.com
11020
- - name: checkout.price_jump.br.oneway
10862
+ - name: checkout.cash_payment.ec
11021
10863
  class_name: Henry::Task::CucumberTask
11022
10864
  options:
11023
10865
  tags:
11024
10866
  - checkout
11025
- - price_jump
11026
- - br
11027
- - oneway
10867
+ - cash_payment
10868
+ - ec
11028
10869
  expand: true
11029
10870
  no-source: true
11030
10871
  reports:
@@ -11033,12 +10874,13 @@ tasks:
11033
10874
  recipients:
11034
10875
  - estebanldh@gmail.com
11035
10876
  - nsimean@despegar.com
11036
- - name: checkout.compra_duplicada
10877
+ - name: checkout.cash_payment.pa
11037
10878
  class_name: Henry::Task::CucumberTask
11038
10879
  options:
11039
10880
  tags:
11040
10881
  - checkout
11041
- - compra_duplicada
10882
+ - cash_payment
10883
+ - pa
11042
10884
  expand: true
11043
10885
  no-source: true
11044
10886
  reports:
@@ -11047,13 +10889,13 @@ tasks:
11047
10889
  recipients:
11048
10890
  - estebanldh@gmail.com
11049
10891
  - nsimean@despegar.com
11050
- - name: checkout.compra_duplicada.ar
10892
+ - name: checkout.cash_payment.us
11051
10893
  class_name: Henry::Task::CucumberTask
11052
10894
  options:
11053
10895
  tags:
11054
10896
  - checkout
11055
- - compra_duplicada
11056
- - ar
10897
+ - cash_payment
10898
+ - us
11057
10899
  expand: true
11058
10900
  no-source: true
11059
10901
  reports:
@@ -11062,14 +10904,13 @@ tasks:
11062
10904
  recipients:
11063
10905
  - estebanldh@gmail.com
11064
10906
  - nsimean@despegar.com
11065
- - name: checkout.compra_duplicada.ar.roundtrip
10907
+ - name: checkout.cash_payment.uy
11066
10908
  class_name: Henry::Task::CucumberTask
11067
10909
  options:
11068
10910
  tags:
11069
10911
  - checkout
11070
- - compra_duplicada
11071
- - ar
11072
- - roundtrip
10912
+ - cash_payment
10913
+ - uy
11073
10914
  expand: true
11074
10915
  no-source: true
11075
10916
  reports:
@@ -11078,14 +10919,13 @@ tasks:
11078
10919
  recipients:
11079
10920
  - estebanldh@gmail.com
11080
10921
  - nsimean@despegar.com
11081
- - name: checkout.compra_duplicada.ar.oneway
10922
+ - name: checkout.cash_payment.pr
11082
10923
  class_name: Henry::Task::CucumberTask
11083
10924
  options:
11084
10925
  tags:
11085
10926
  - checkout
11086
- - compra_duplicada
11087
- - ar
11088
- - oneway
10927
+ - cash_payment
10928
+ - pr
11089
10929
  expand: true
11090
10930
  no-source: true
11091
10931
  reports:
@@ -11094,14 +10934,27 @@ tasks:
11094
10934
  recipients:
11095
10935
  - estebanldh@gmail.com
11096
10936
  - nsimean@despegar.com
11097
- - name: checkout.compra_duplicada.ar.multipledestinations
10937
+ - name: results.wish_list
11098
10938
  class_name: Henry::Task::CucumberTask
11099
10939
  options:
11100
10940
  tags:
11101
- - checkout
11102
- - compra_duplicada
10941
+ - results
10942
+ - wish_list
10943
+ expand: true
10944
+ no-source: true
10945
+ reports:
10946
+ - format: html
10947
+ name: ${DATE}_${TASK_NAME}.html
10948
+ recipients:
10949
+ - estebanldh@gmail.com
10950
+ - nsimean@despegar.com
10951
+ - name: results.wish_list.ar
10952
+ class_name: Henry::Task::CucumberTask
10953
+ options:
10954
+ tags:
10955
+ - results
10956
+ - wish_list
11103
10957
  - ar
11104
- - multipledestinations
11105
10958
  expand: true
11106
10959
  no-source: true
11107
10960
  reports:
@@ -11110,13 +10963,13 @@ tasks:
11110
10963
  recipients:
11111
10964
  - estebanldh@gmail.com
11112
10965
  - nsimean@despegar.com
11113
- - name: checkout.compra_duplicada.mx
10966
+ - name: results.wish_list.br
11114
10967
  class_name: Henry::Task::CucumberTask
11115
10968
  options:
11116
10969
  tags:
11117
- - checkout
11118
- - compra_duplicada
11119
- - mx
10970
+ - results
10971
+ - wish_list
10972
+ - br
11120
10973
  expand: true
11121
10974
  no-source: true
11122
10975
  reports:
@@ -11125,14 +10978,13 @@ tasks:
11125
10978
  recipients:
11126
10979
  - estebanldh@gmail.com
11127
10980
  - nsimean@despegar.com
11128
- - name: checkout.compra_duplicada.mx.roundtrip
10981
+ - name: results.wish_list.us
11129
10982
  class_name: Henry::Task::CucumberTask
11130
10983
  options:
11131
10984
  tags:
11132
- - checkout
11133
- - compra_duplicada
11134
- - mx
11135
- - roundtrip
10985
+ - results
10986
+ - wish_list
10987
+ - us
11136
10988
  expand: true
11137
10989
  no-source: true
11138
10990
  reports:
@@ -11141,14 +10993,12 @@ tasks:
11141
10993
  recipients:
11142
10994
  - estebanldh@gmail.com
11143
10995
  - nsimean@despegar.com
11144
- - name: checkout.compra_duplicada.mx.oneway
10996
+ - name: checkout.booking_2_ow
11145
10997
  class_name: Henry::Task::CucumberTask
11146
10998
  options:
11147
10999
  tags:
11148
11000
  - checkout
11149
- - compra_duplicada
11150
- - mx
11151
- - oneway
11001
+ - booking_2_ow
11152
11002
  expand: true
11153
11003
  no-source: true
11154
11004
  reports:
@@ -11157,14 +11007,13 @@ tasks:
11157
11007
  recipients:
11158
11008
  - estebanldh@gmail.com
11159
11009
  - nsimean@despegar.com
11160
- - name: checkout.compra_duplicada.mx.multipledestinations
11010
+ - name: checkout.booking_2_ow.br
11161
11011
  class_name: Henry::Task::CucumberTask
11162
11012
  options:
11163
11013
  tags:
11164
11014
  - checkout
11165
- - compra_duplicada
11166
- - mx
11167
- - multipledestinations
11015
+ - booking_2_ow
11016
+ - br
11168
11017
  expand: true
11169
11018
  no-source: true
11170
11019
  reports:
@@ -11173,13 +11022,13 @@ tasks:
11173
11022
  recipients:
11174
11023
  - estebanldh@gmail.com
11175
11024
  - nsimean@despegar.com
11176
- - name: checkout.compra_duplicada.us
11025
+ - name: checkout.booking_2_ow.br
11177
11026
  class_name: Henry::Task::CucumberTask
11178
11027
  options:
11179
11028
  tags:
11180
11029
  - checkout
11181
- - compra_duplicada
11182
- - us
11030
+ - booking_2_ow
11031
+ - br
11183
11032
  expand: true
11184
11033
  no-source: true
11185
11034
  reports:
@@ -11188,14 +11037,13 @@ tasks:
11188
11037
  recipients:
11189
11038
  - estebanldh@gmail.com
11190
11039
  - nsimean@despegar.com
11191
- - name: checkout.compra_duplicada.us.roundtrip
11040
+ - name: checkout.booking_2_ow.br
11192
11041
  class_name: Henry::Task::CucumberTask
11193
11042
  options:
11194
11043
  tags:
11195
11044
  - checkout
11196
- - compra_duplicada
11197
- - us
11198
- - roundtrip
11045
+ - booking_2_ow
11046
+ - br
11199
11047
  expand: true
11200
11048
  no-source: true
11201
11049
  reports:
@@ -11204,14 +11052,13 @@ tasks:
11204
11052
  recipients:
11205
11053
  - estebanldh@gmail.com
11206
11054
  - nsimean@despegar.com
11207
- - name: checkout.compra_duplicada.us.oneway
11055
+ - name: checkout.booking_2_ow.br
11208
11056
  class_name: Henry::Task::CucumberTask
11209
11057
  options:
11210
11058
  tags:
11211
11059
  - checkout
11212
- - compra_duplicada
11213
- - us
11214
- - oneway
11060
+ - booking_2_ow
11061
+ - br
11215
11062
  expand: true
11216
11063
  no-source: true
11217
11064
  reports:
@@ -11220,14 +11067,13 @@ tasks:
11220
11067
  recipients:
11221
11068
  - estebanldh@gmail.com
11222
11069
  - nsimean@despegar.com
11223
- - name: checkout.compra_duplicada.us.multipledestinations
11070
+ - name: checkout.booking_2_ow.br
11224
11071
  class_name: Henry::Task::CucumberTask
11225
11072
  options:
11226
11073
  tags:
11227
11074
  - checkout
11228
- - compra_duplicada
11229
- - us
11230
- - multipledestinations
11075
+ - booking_2_ow
11076
+ - br
11231
11077
  expand: true
11232
11078
  no-source: true
11233
11079
  reports:
@@ -11236,12 +11082,12 @@ tasks:
11236
11082
  recipients:
11237
11083
  - estebanldh@gmail.com
11238
11084
  - nsimean@despegar.com
11239
- - name: checkout.compra_duplicada.br
11085
+ - name: checkout.booking_2_ow.br
11240
11086
  class_name: Henry::Task::CucumberTask
11241
11087
  options:
11242
11088
  tags:
11243
11089
  - checkout
11244
- - compra_duplicada
11090
+ - booking_2_ow
11245
11091
  - br
11246
11092
  expand: true
11247
11093
  no-source: true
@@ -11251,14 +11097,13 @@ tasks:
11251
11097
  recipients:
11252
11098
  - estebanldh@gmail.com
11253
11099
  - nsimean@despegar.com
11254
- - name: checkout.compra_duplicada.br.roundtrip
11100
+ - name: checkout.booking_2_ow.br
11255
11101
  class_name: Henry::Task::CucumberTask
11256
11102
  options:
11257
11103
  tags:
11258
11104
  - checkout
11259
- - compra_duplicada
11105
+ - booking_2_ow
11260
11106
  - br
11261
- - roundtrip
11262
11107
  expand: true
11263
11108
  no-source: true
11264
11109
  reports:
@@ -11267,14 +11112,13 @@ tasks:
11267
11112
  recipients:
11268
11113
  - estebanldh@gmail.com
11269
11114
  - nsimean@despegar.com
11270
- - name: checkout.compra_duplicada.br.oneway
11115
+ - name: checkout.booking_2_ow.br
11271
11116
  class_name: Henry::Task::CucumberTask
11272
11117
  options:
11273
11118
  tags:
11274
11119
  - checkout
11275
- - compra_duplicada
11120
+ - booking_2_ow
11276
11121
  - br
11277
- - oneway
11278
11122
  expand: true
11279
11123
  no-source: true
11280
11124
  reports:
@@ -11283,14 +11127,13 @@ tasks:
11283
11127
  recipients:
11284
11128
  - estebanldh@gmail.com
11285
11129
  - nsimean@despegar.com
11286
- - name: checkout.compra_duplicada.br.multipledestinations
11130
+ - name: checkout.booking_2_ow.br
11287
11131
  class_name: Henry::Task::CucumberTask
11288
11132
  options:
11289
11133
  tags:
11290
11134
  - checkout
11291
- - compra_duplicada
11135
+ - booking_2_ow
11292
11136
  - br
11293
- - multipledestinations
11294
11137
  expand: true
11295
11138
  no-source: true
11296
11139
  reports:
@@ -11299,12 +11142,206 @@ tasks:
11299
11142
  recipients:
11300
11143
  - estebanldh@gmail.com
11301
11144
  - nsimean@despegar.com
11302
- - name: checkout.braspag
11145
+ - name: flights_tracker.search
11146
+ class_name: Henry::Task::CucumberTask
11147
+ options:
11148
+ tags:
11149
+ - flights_tracker
11150
+ - search
11151
+ expand: true
11152
+ no-source: true
11153
+ reports:
11154
+ - format: html
11155
+ name: ${DATE}_${TASK_NAME}.html
11156
+ recipients:
11157
+ - estebanldh@gmail.com
11158
+ - nsimean@despegar.com
11159
+ - name: flights_tracker.search.ar
11160
+ class_name: Henry::Task::CucumberTask
11161
+ options:
11162
+ tags:
11163
+ - flights_tracker
11164
+ - search
11165
+ - ar
11166
+ expand: true
11167
+ no-source: true
11168
+ reports:
11169
+ - format: html
11170
+ name: ${DATE}_${TASK_NAME}.html
11171
+ recipients:
11172
+ - estebanldh@gmail.com
11173
+ - nsimean@despegar.com
11174
+ - name: flights_tracker.search.br
11175
+ class_name: Henry::Task::CucumberTask
11176
+ options:
11177
+ tags:
11178
+ - flights_tracker
11179
+ - search
11180
+ - br
11181
+ expand: true
11182
+ no-source: true
11183
+ reports:
11184
+ - format: html
11185
+ name: ${DATE}_${TASK_NAME}.html
11186
+ recipients:
11187
+ - estebanldh@gmail.com
11188
+ - nsimean@despegar.com
11189
+ - name: flights_tracker.search.co
11190
+ class_name: Henry::Task::CucumberTask
11191
+ options:
11192
+ tags:
11193
+ - flights_tracker
11194
+ - search
11195
+ - co
11196
+ expand: true
11197
+ no-source: true
11198
+ reports:
11199
+ - format: html
11200
+ name: ${DATE}_${TASK_NAME}.html
11201
+ recipients:
11202
+ - estebanldh@gmail.com
11203
+ - nsimean@despegar.com
11204
+ - name: flights_tracker.search.cl
11205
+ class_name: Henry::Task::CucumberTask
11206
+ options:
11207
+ tags:
11208
+ - flights_tracker
11209
+ - search
11210
+ - cl
11211
+ expand: true
11212
+ no-source: true
11213
+ reports:
11214
+ - format: html
11215
+ name: ${DATE}_${TASK_NAME}.html
11216
+ recipients:
11217
+ - estebanldh@gmail.com
11218
+ - nsimean@despegar.com
11219
+ - name: flights_tracker.search.cr
11220
+ class_name: Henry::Task::CucumberTask
11221
+ options:
11222
+ tags:
11223
+ - flights_tracker
11224
+ - search
11225
+ - cr
11226
+ expand: true
11227
+ no-source: true
11228
+ reports:
11229
+ - format: html
11230
+ name: ${DATE}_${TASK_NAME}.html
11231
+ recipients:
11232
+ - estebanldh@gmail.com
11233
+ - nsimean@despegar.com
11234
+ - name: flights_tracker.search.ec
11235
+ class_name: Henry::Task::CucumberTask
11236
+ options:
11237
+ tags:
11238
+ - flights_tracker
11239
+ - search
11240
+ - ec
11241
+ expand: true
11242
+ no-source: true
11243
+ reports:
11244
+ - format: html
11245
+ name: ${DATE}_${TASK_NAME}.html
11246
+ recipients:
11247
+ - estebanldh@gmail.com
11248
+ - nsimean@despegar.com
11249
+ - name: flights_tracker.search.mx
11250
+ class_name: Henry::Task::CucumberTask
11251
+ options:
11252
+ tags:
11253
+ - flights_tracker
11254
+ - search
11255
+ - mx
11256
+ expand: true
11257
+ no-source: true
11258
+ reports:
11259
+ - format: html
11260
+ name: ${DATE}_${TASK_NAME}.html
11261
+ recipients:
11262
+ - estebanldh@gmail.com
11263
+ - nsimean@despegar.com
11264
+ - name: flights_tracker.search.pa
11265
+ class_name: Henry::Task::CucumberTask
11266
+ options:
11267
+ tags:
11268
+ - flights_tracker
11269
+ - search
11270
+ - pa
11271
+ expand: true
11272
+ no-source: true
11273
+ reports:
11274
+ - format: html
11275
+ name: ${DATE}_${TASK_NAME}.html
11276
+ recipients:
11277
+ - estebanldh@gmail.com
11278
+ - nsimean@despegar.com
11279
+ - name: flights_tracker.search.pe
11280
+ class_name: Henry::Task::CucumberTask
11281
+ options:
11282
+ tags:
11283
+ - flights_tracker
11284
+ - search
11285
+ - pe
11286
+ expand: true
11287
+ no-source: true
11288
+ reports:
11289
+ - format: html
11290
+ name: ${DATE}_${TASK_NAME}.html
11291
+ recipients:
11292
+ - estebanldh@gmail.com
11293
+ - nsimean@despegar.com
11294
+ - name: flights_tracker.search.us
11295
+ class_name: Henry::Task::CucumberTask
11296
+ options:
11297
+ tags:
11298
+ - flights_tracker
11299
+ - search
11300
+ - us
11301
+ expand: true
11302
+ no-source: true
11303
+ reports:
11304
+ - format: html
11305
+ name: ${DATE}_${TASK_NAME}.html
11306
+ recipients:
11307
+ - estebanldh@gmail.com
11308
+ - nsimean@despegar.com
11309
+ - name: flights_tracker.search.uy
11310
+ class_name: Henry::Task::CucumberTask
11311
+ options:
11312
+ tags:
11313
+ - flights_tracker
11314
+ - search
11315
+ - uy
11316
+ expand: true
11317
+ no-source: true
11318
+ reports:
11319
+ - format: html
11320
+ name: ${DATE}_${TASK_NAME}.html
11321
+ recipients:
11322
+ - estebanldh@gmail.com
11323
+ - nsimean@despegar.com
11324
+ - name: flights_tracker.search.ve
11325
+ class_name: Henry::Task::CucumberTask
11326
+ options:
11327
+ tags:
11328
+ - flights_tracker
11329
+ - search
11330
+ - ve
11331
+ expand: true
11332
+ no-source: true
11333
+ reports:
11334
+ - format: html
11335
+ name: ${DATE}_${TASK_NAME}.html
11336
+ recipients:
11337
+ - estebanldh@gmail.com
11338
+ - nsimean@despegar.com
11339
+ - name: checkout.low_cost
11303
11340
  class_name: Henry::Task::CucumberTask
11304
11341
  options:
11305
11342
  tags:
11306
11343
  - checkout
11307
- - braspag
11344
+ - low_cost
11308
11345
  expand: true
11309
11346
  no-source: true
11310
11347
  reports:
@@ -11313,12 +11350,12 @@ tasks:
11313
11350
  recipients:
11314
11351
  - estebanldh@gmail.com
11315
11352
  - nsimean@despegar.com
11316
- - name: checkout.braspag.br
11353
+ - name: checkout.low_cost.br
11317
11354
  class_name: Henry::Task::CucumberTask
11318
11355
  options:
11319
11356
  tags:
11320
11357
  - checkout
11321
- - braspag
11358
+ - low_cost
11322
11359
  - br
11323
11360
  expand: true
11324
11361
  no-source: true
@@ -11328,12 +11365,12 @@ tasks:
11328
11365
  recipients:
11329
11366
  - estebanldh@gmail.com
11330
11367
  - nsimean@despegar.com
11331
- - name: checkout.cac
11368
+ - name: checkout.error_messages
11332
11369
  class_name: Henry::Task::CucumberTask
11333
11370
  options:
11334
11371
  tags:
11335
11372
  - checkout
11336
- - cac
11373
+ - error_messages
11337
11374
  expand: true
11338
11375
  no-source: true
11339
11376
  reports:
@@ -11342,12 +11379,12 @@ tasks:
11342
11379
  recipients:
11343
11380
  - estebanldh@gmail.com
11344
11381
  - nsimean@despegar.com
11345
- - name: checkout.cac.ar
11382
+ - name: checkout.error_messages.ar
11346
11383
  class_name: Henry::Task::CucumberTask
11347
11384
  options:
11348
11385
  tags:
11349
11386
  - checkout
11350
- - cac
11387
+ - error_messages
11351
11388
  - ar
11352
11389
  expand: true
11353
11390
  no-source: true
@@ -11357,12 +11394,12 @@ tasks:
11357
11394
  recipients:
11358
11395
  - estebanldh@gmail.com
11359
11396
  - nsimean@despegar.com
11360
- - name: checkout.cac.ar.roundtrip
11397
+ - name: checkout.error_messages.ar.roundtrip
11361
11398
  class_name: Henry::Task::CucumberTask
11362
11399
  options:
11363
11400
  tags:
11364
11401
  - checkout
11365
- - cac
11402
+ - error_messages
11366
11403
  - ar
11367
11404
  - roundtrip
11368
11405
  expand: true
@@ -11373,12 +11410,12 @@ tasks:
11373
11410
  recipients:
11374
11411
  - estebanldh@gmail.com
11375
11412
  - nsimean@despegar.com
11376
- - name: checkout.cac.ar.oneway
11413
+ - name: checkout.error_messages.ar.oneway
11377
11414
  class_name: Henry::Task::CucumberTask
11378
11415
  options:
11379
11416
  tags:
11380
11417
  - checkout
11381
- - cac
11418
+ - error_messages
11382
11419
  - ar
11383
11420
  - oneway
11384
11421
  expand: true
@@ -11389,12 +11426,12 @@ tasks:
11389
11426
  recipients:
11390
11427
  - estebanldh@gmail.com
11391
11428
  - nsimean@despegar.com
11392
- - name: checkout.cac.ar.multipledestinations
11429
+ - name: checkout.error_messages.ar.multipledestinations
11393
11430
  class_name: Henry::Task::CucumberTask
11394
11431
  options:
11395
11432
  tags:
11396
11433
  - checkout
11397
- - cac
11434
+ - error_messages
11398
11435
  - ar
11399
11436
  - multipledestinations
11400
11437
  expand: true
@@ -11405,13 +11442,13 @@ tasks:
11405
11442
  recipients:
11406
11443
  - estebanldh@gmail.com
11407
11444
  - nsimean@despegar.com
11408
- - name: checkout.cac.br
11445
+ - name: checkout.error_messages.us
11409
11446
  class_name: Henry::Task::CucumberTask
11410
11447
  options:
11411
11448
  tags:
11412
11449
  - checkout
11413
- - cac
11414
- - br
11450
+ - error_messages
11451
+ - us
11415
11452
  expand: true
11416
11453
  no-source: true
11417
11454
  reports:
@@ -11420,13 +11457,13 @@ tasks:
11420
11457
  recipients:
11421
11458
  - estebanldh@gmail.com
11422
11459
  - nsimean@despegar.com
11423
- - name: checkout.cac.br.roundtrip
11460
+ - name: checkout.error_messages.us.roundtrip
11424
11461
  class_name: Henry::Task::CucumberTask
11425
11462
  options:
11426
11463
  tags:
11427
11464
  - checkout
11428
- - cac
11429
- - br
11465
+ - error_messages
11466
+ - us
11430
11467
  - roundtrip
11431
11468
  expand: true
11432
11469
  no-source: true
@@ -11436,13 +11473,13 @@ tasks:
11436
11473
  recipients:
11437
11474
  - estebanldh@gmail.com
11438
11475
  - nsimean@despegar.com
11439
- - name: checkout.cac.br.oneway
11476
+ - name: checkout.error_messages.us.oneway
11440
11477
  class_name: Henry::Task::CucumberTask
11441
11478
  options:
11442
11479
  tags:
11443
11480
  - checkout
11444
- - cac
11445
- - br
11481
+ - error_messages
11482
+ - us
11446
11483
  - oneway
11447
11484
  expand: true
11448
11485
  no-source: true
@@ -11452,14 +11489,14 @@ tasks:
11452
11489
  recipients:
11453
11490
  - estebanldh@gmail.com
11454
11491
  - nsimean@despegar.com
11455
- - name: checkout.cac.br.roundtrip
11492
+ - name: checkout.error_messages.us.multipledestinations
11456
11493
  class_name: Henry::Task::CucumberTask
11457
11494
  options:
11458
11495
  tags:
11459
11496
  - checkout
11460
- - cac
11461
- - br
11462
- - roundtrip
11497
+ - error_messages
11498
+ - us
11499
+ - multipledestinations
11463
11500
  expand: true
11464
11501
  no-source: true
11465
11502
  reports:
@@ -11468,12 +11505,13 @@ tasks:
11468
11505
  recipients:
11469
11506
  - estebanldh@gmail.com
11470
11507
  - nsimean@despegar.com
11471
- - name: checkout.debito
11508
+ - name: checkout.error_messages.ve
11472
11509
  class_name: Henry::Task::CucumberTask
11473
11510
  options:
11474
11511
  tags:
11475
11512
  - checkout
11476
- - debito
11513
+ - error_messages
11514
+ - ve
11477
11515
  expand: true
11478
11516
  no-source: true
11479
11517
  reports:
@@ -11482,13 +11520,14 @@ tasks:
11482
11520
  recipients:
11483
11521
  - estebanldh@gmail.com
11484
11522
  - nsimean@despegar.com
11485
- - name: checkout.debito.mx
11523
+ - name: checkout.error_messages.ve.roundtrip
11486
11524
  class_name: Henry::Task::CucumberTask
11487
11525
  options:
11488
11526
  tags:
11489
11527
  - checkout
11490
- - debito
11491
- - mx
11528
+ - error_messages
11529
+ - ve
11530
+ - roundtrip
11492
11531
  expand: true
11493
11532
  no-source: true
11494
11533
  reports:
@@ -11497,14 +11536,14 @@ tasks:
11497
11536
  recipients:
11498
11537
  - estebanldh@gmail.com
11499
11538
  - nsimean@despegar.com
11500
- - name: checkout.debito.mx.roundtrip
11539
+ - name: checkout.error_messages.ve.oneway
11501
11540
  class_name: Henry::Task::CucumberTask
11502
11541
  options:
11503
11542
  tags:
11504
11543
  - checkout
11505
- - debito
11506
- - mx
11507
- - roundtrip
11544
+ - error_messages
11545
+ - ve
11546
+ - oneway
11508
11547
  expand: true
11509
11548
  no-source: true
11510
11549
  reports:
@@ -11513,14 +11552,14 @@ tasks:
11513
11552
  recipients:
11514
11553
  - estebanldh@gmail.com
11515
11554
  - nsimean@despegar.com
11516
- - name: checkout.debito.mx.oneway
11555
+ - name: checkout.error_messages.ve.multipledestinations
11517
11556
  class_name: Henry::Task::CucumberTask
11518
11557
  options:
11519
11558
  tags:
11520
11559
  - checkout
11521
- - debito
11522
- - mx
11523
- - oneway
11560
+ - error_messages
11561
+ - ve
11562
+ - multipledestinations
11524
11563
  expand: true
11525
11564
  no-source: true
11526
11565
  reports:
@@ -11529,14 +11568,13 @@ tasks:
11529
11568
  recipients:
11530
11569
  - estebanldh@gmail.com
11531
11570
  - nsimean@despegar.com
11532
- - name: checkout.debito.mx.multipledestinations
11571
+ - name: checkout.error_messages.br
11533
11572
  class_name: Henry::Task::CucumberTask
11534
11573
  options:
11535
11574
  tags:
11536
11575
  - checkout
11537
- - debito
11538
- - mx
11539
- - multipledestinations
11576
+ - error_messages
11577
+ - br
11540
11578
  expand: true
11541
11579
  no-source: true
11542
11580
  reports:
@@ -11545,13 +11583,14 @@ tasks:
11545
11583
  recipients:
11546
11584
  - estebanldh@gmail.com
11547
11585
  - nsimean@despegar.com
11548
- - name: checkout.debito.pe
11586
+ - name: checkout.error_messages.br.roundtrip
11549
11587
  class_name: Henry::Task::CucumberTask
11550
11588
  options:
11551
11589
  tags:
11552
11590
  - checkout
11553
- - debito
11554
- - pe
11591
+ - error_messages
11592
+ - br
11593
+ - roundtrip
11555
11594
  expand: true
11556
11595
  no-source: true
11557
11596
  reports:
@@ -11560,14 +11599,14 @@ tasks:
11560
11599
  recipients:
11561
11600
  - estebanldh@gmail.com
11562
11601
  - nsimean@despegar.com
11563
- - name: checkout.debito.pe.roundtrip
11602
+ - name: checkout.error_messages.br.oneway
11564
11603
  class_name: Henry::Task::CucumberTask
11565
11604
  options:
11566
11605
  tags:
11567
11606
  - checkout
11568
- - debito
11569
- - pe
11570
- - roundtrip
11607
+ - error_messages
11608
+ - br
11609
+ - oneway
11571
11610
  expand: true
11572
11611
  no-source: true
11573
11612
  reports:
@@ -11576,14 +11615,12 @@ tasks:
11576
11615
  recipients:
11577
11616
  - estebanldh@gmail.com
11578
11617
  - nsimean@despegar.com
11579
- - name: checkout.debito.pe.oneway
11618
+ - name: checkout.fast_checkout
11580
11619
  class_name: Henry::Task::CucumberTask
11581
11620
  options:
11582
11621
  tags:
11583
11622
  - checkout
11584
- - debito
11585
- - pe
11586
- - oneway
11623
+ - fast_checkout
11587
11624
  expand: true
11588
11625
  no-source: true
11589
11626
  reports:
@@ -11592,14 +11629,13 @@ tasks:
11592
11629
  recipients:
11593
11630
  - estebanldh@gmail.com
11594
11631
  - nsimean@despegar.com
11595
- - name: checkout.debito.pe.multipledestinations
11632
+ - name: checkout.fast_checkout.ar
11596
11633
  class_name: Henry::Task::CucumberTask
11597
11634
  options:
11598
11635
  tags:
11599
11636
  - checkout
11600
- - debito
11601
- - pe
11602
- - multipledestinations
11637
+ - fast_checkout
11638
+ - ar
11603
11639
  expand: true
11604
11640
  no-source: true
11605
11641
  reports:
@@ -11608,12 +11644,14 @@ tasks:
11608
11644
  recipients:
11609
11645
  - estebanldh@gmail.com
11610
11646
  - nsimean@despegar.com
11611
- - name: checkout.online_payment
11647
+ - name: checkout.fast_checkout.ar.roundtrip
11612
11648
  class_name: Henry::Task::CucumberTask
11613
11649
  options:
11614
11650
  tags:
11615
11651
  - checkout
11616
- - online_payment
11652
+ - fast_checkout
11653
+ - ar
11654
+ - roundtrip
11617
11655
  expand: true
11618
11656
  no-source: true
11619
11657
  reports:
@@ -11622,13 +11660,13 @@ tasks:
11622
11660
  recipients:
11623
11661
  - estebanldh@gmail.com
11624
11662
  - nsimean@despegar.com
11625
- - name: checkout.online_payment.ar
11663
+ - name: checkout.fast_checkout.us
11626
11664
  class_name: Henry::Task::CucumberTask
11627
11665
  options:
11628
11666
  tags:
11629
11667
  - checkout
11630
- - online_payment
11631
- - ar
11668
+ - fast_checkout
11669
+ - us
11632
11670
  expand: true
11633
11671
  no-source: true
11634
11672
  reports:
@@ -11637,13 +11675,14 @@ tasks:
11637
11675
  recipients:
11638
11676
  - estebanldh@gmail.com
11639
11677
  - nsimean@despegar.com
11640
- - name: checkout.online_payment.pe
11678
+ - name: checkout.fast_checkout.us.oneway
11641
11679
  class_name: Henry::Task::CucumberTask
11642
11680
  options:
11643
11681
  tags:
11644
11682
  - checkout
11645
- - online_payment
11646
- - pe
11683
+ - fast_checkout
11684
+ - us
11685
+ - oneway
11647
11686
  expand: true
11648
11687
  no-source: true
11649
11688
  reports:
@@ -11652,12 +11691,12 @@ tasks:
11652
11691
  recipients:
11653
11692
  - estebanldh@gmail.com
11654
11693
  - nsimean@despegar.com
11655
- - name: checkout.online_payment.br
11694
+ - name: checkout.fast_checkout.br
11656
11695
  class_name: Henry::Task::CucumberTask
11657
11696
  options:
11658
11697
  tags:
11659
11698
  - checkout
11660
- - online_payment
11699
+ - fast_checkout
11661
11700
  - br
11662
11701
  expand: true
11663
11702
  no-source: true
@@ -11667,13 +11706,14 @@ tasks:
11667
11706
  recipients:
11668
11707
  - estebanldh@gmail.com
11669
11708
  - nsimean@despegar.com
11670
- - name: checkout.online_payment.co
11709
+ - name: checkout.fast_checkout.br.roundtrip
11671
11710
  class_name: Henry::Task::CucumberTask
11672
11711
  options:
11673
11712
  tags:
11674
11713
  - checkout
11675
- - online_payment
11676
- - co
11714
+ - fast_checkout
11715
+ - br
11716
+ - roundtrip
11677
11717
  expand: true
11678
11718
  no-source: true
11679
11719
  reports:
@@ -11682,13 +11722,12 @@ tasks:
11682
11722
  recipients:
11683
11723
  - estebanldh@gmail.com
11684
11724
  - nsimean@despegar.com
11685
- - name: checkout.online_payment.mx
11725
+ - name: checkout.price_jump
11686
11726
  class_name: Henry::Task::CucumberTask
11687
11727
  options:
11688
11728
  tags:
11689
11729
  - checkout
11690
- - online_payment
11691
- - mx
11730
+ - price_jump
11692
11731
  expand: true
11693
11732
  no-source: true
11694
11733
  reports:
@@ -11697,13 +11736,13 @@ tasks:
11697
11736
  recipients:
11698
11737
  - estebanldh@gmail.com
11699
11738
  - nsimean@despegar.com
11700
- - name: checkout.online_payment.ve
11739
+ - name: checkout.price_jump.ar
11701
11740
  class_name: Henry::Task::CucumberTask
11702
11741
  options:
11703
11742
  tags:
11704
11743
  - checkout
11705
- - online_payment
11706
- - ve
11744
+ - price_jump
11745
+ - ar
11707
11746
  expand: true
11708
11747
  no-source: true
11709
11748
  reports:
@@ -11712,13 +11751,14 @@ tasks:
11712
11751
  recipients:
11713
11752
  - estebanldh@gmail.com
11714
11753
  - nsimean@despegar.com
11715
- - name: checkout.online_payment.cl
11754
+ - name: checkout.price_jump.ar.roundtrip
11716
11755
  class_name: Henry::Task::CucumberTask
11717
11756
  options:
11718
11757
  tags:
11719
11758
  - checkout
11720
- - online_payment
11721
- - cl
11759
+ - price_jump
11760
+ - ar
11761
+ - roundtrip
11722
11762
  expand: true
11723
11763
  no-source: true
11724
11764
  reports:
@@ -11727,13 +11767,13 @@ tasks:
11727
11767
  recipients:
11728
11768
  - estebanldh@gmail.com
11729
11769
  - nsimean@despegar.com
11730
- - name: checkout.online_payment.cr
11770
+ - name: checkout.price_jump.us
11731
11771
  class_name: Henry::Task::CucumberTask
11732
11772
  options:
11733
11773
  tags:
11734
11774
  - checkout
11735
- - online_payment
11736
- - cr
11775
+ - price_jump
11776
+ - us
11737
11777
  expand: true
11738
11778
  no-source: true
11739
11779
  reports:
@@ -11742,13 +11782,45 @@ tasks:
11742
11782
  recipients:
11743
11783
  - estebanldh@gmail.com
11744
11784
  - nsimean@despegar.com
11745
- - name: checkout.online_payment.ec
11785
+ - name: checkout.price_jump.us.multipledestinations
11746
11786
  class_name: Henry::Task::CucumberTask
11747
11787
  options:
11748
11788
  tags:
11749
11789
  - checkout
11750
- - online_payment
11751
- - ec
11790
+ - price_jump
11791
+ - us
11792
+ - multipledestinations
11793
+ expand: true
11794
+ no-source: true
11795
+ reports:
11796
+ - format: html
11797
+ name: ${DATE}_${TASK_NAME}.html
11798
+ recipients:
11799
+ - estebanldh@gmail.com
11800
+ - nsimean@despegar.com
11801
+ - name: checkout.price_jump.br
11802
+ class_name: Henry::Task::CucumberTask
11803
+ options:
11804
+ tags:
11805
+ - checkout
11806
+ - price_jump
11807
+ - br
11808
+ expand: true
11809
+ no-source: true
11810
+ reports:
11811
+ - format: html
11812
+ name: ${DATE}_${TASK_NAME}.html
11813
+ recipients:
11814
+ - estebanldh@gmail.com
11815
+ - nsimean@despegar.com
11816
+ - name: checkout.price_jump.br.oneway
11817
+ class_name: Henry::Task::CucumberTask
11818
+ options:
11819
+ tags:
11820
+ - checkout
11821
+ - price_jump
11822
+ - br
11823
+ - oneway
11752
11824
  expand: true
11753
11825
  no-source: true
11754
11826
  reports:
@@ -11757,13 +11829,12 @@ tasks:
11757
11829
  recipients:
11758
11830
  - estebanldh@gmail.com
11759
11831
  - nsimean@despegar.com
11760
- - name: checkout.online_payment.pa
11832
+ - name: checkout.braspag
11761
11833
  class_name: Henry::Task::CucumberTask
11762
11834
  options:
11763
11835
  tags:
11764
11836
  - checkout
11765
- - online_payment
11766
- - pa
11837
+ - braspag
11767
11838
  expand: true
11768
11839
  no-source: true
11769
11840
  reports:
@@ -11772,13 +11843,13 @@ tasks:
11772
11843
  recipients:
11773
11844
  - estebanldh@gmail.com
11774
11845
  - nsimean@despegar.com
11775
- - name: checkout.online_payment.us
11846
+ - name: checkout.braspag.br
11776
11847
  class_name: Henry::Task::CucumberTask
11777
11848
  options:
11778
11849
  tags:
11779
11850
  - checkout
11780
- - online_payment
11781
- - us
11851
+ - braspag
11852
+ - br
11782
11853
  expand: true
11783
11854
  no-source: true
11784
11855
  reports:
@@ -11787,13 +11858,12 @@ tasks:
11787
11858
  recipients:
11788
11859
  - estebanldh@gmail.com
11789
11860
  - nsimean@despegar.com
11790
- - name: checkout.online_payment.uy
11861
+ - name: checkout.cac
11791
11862
  class_name: Henry::Task::CucumberTask
11792
11863
  options:
11793
11864
  tags:
11794
11865
  - checkout
11795
- - online_payment
11796
- - uy
11866
+ - cac
11797
11867
  expand: true
11798
11868
  no-source: true
11799
11869
  reports:
@@ -11802,13 +11872,13 @@ tasks:
11802
11872
  recipients:
11803
11873
  - estebanldh@gmail.com
11804
11874
  - nsimean@despegar.com
11805
- - name: checkout.online_payment.pr
11875
+ - name: checkout.cac.ar
11806
11876
  class_name: Henry::Task::CucumberTask
11807
11877
  options:
11808
11878
  tags:
11809
11879
  - checkout
11810
- - online_payment
11811
- - pr
11880
+ - cac
11881
+ - ar
11812
11882
  expand: true
11813
11883
  no-source: true
11814
11884
  reports:
@@ -11817,12 +11887,14 @@ tasks:
11817
11887
  recipients:
11818
11888
  - estebanldh@gmail.com
11819
11889
  - nsimean@despegar.com
11820
- - name: checkout.book_ok
11890
+ - name: checkout.cac.ar.roundtrip
11821
11891
  class_name: Henry::Task::CucumberTask
11822
11892
  options:
11823
11893
  tags:
11824
11894
  - checkout
11825
- - book_ok
11895
+ - cac
11896
+ - ar
11897
+ - roundtrip
11826
11898
  expand: true
11827
11899
  no-source: true
11828
11900
  reports:
@@ -11831,13 +11903,14 @@ tasks:
11831
11903
  recipients:
11832
11904
  - estebanldh@gmail.com
11833
11905
  - nsimean@despegar.com
11834
- - name: checkout.book_ok.pt
11906
+ - name: checkout.cac.ar.oneway
11835
11907
  class_name: Henry::Task::CucumberTask
11836
11908
  options:
11837
11909
  tags:
11838
11910
  - checkout
11839
- - book_ok
11840
- - pt
11911
+ - cac
11912
+ - ar
11913
+ - oneway
11841
11914
  expand: true
11842
11915
  no-source: true
11843
11916
  reports:
@@ -11846,14 +11919,14 @@ tasks:
11846
11919
  recipients:
11847
11920
  - estebanldh@gmail.com
11848
11921
  - nsimean@despegar.com
11849
- - name: checkout.book_ok.pt.roundtrip
11922
+ - name: checkout.cac.ar.multipledestinations
11850
11923
  class_name: Henry::Task::CucumberTask
11851
11924
  options:
11852
11925
  tags:
11853
11926
  - checkout
11854
- - book_ok
11855
- - pt
11856
- - roundtrip
11927
+ - cac
11928
+ - ar
11929
+ - multipledestinations
11857
11930
  expand: true
11858
11931
  no-source: true
11859
11932
  reports:
@@ -11862,14 +11935,13 @@ tasks:
11862
11935
  recipients:
11863
11936
  - estebanldh@gmail.com
11864
11937
  - nsimean@despegar.com
11865
- - name: checkout.book_ok.pt.oneway
11938
+ - name: checkout.cac.br
11866
11939
  class_name: Henry::Task::CucumberTask
11867
11940
  options:
11868
11941
  tags:
11869
11942
  - checkout
11870
- - book_ok
11871
- - pt
11872
- - oneway
11943
+ - cac
11944
+ - br
11873
11945
  expand: true
11874
11946
  no-source: true
11875
11947
  reports:
@@ -11878,14 +11950,14 @@ tasks:
11878
11950
  recipients:
11879
11951
  - estebanldh@gmail.com
11880
11952
  - nsimean@despegar.com
11881
- - name: checkout.book_ok.pt.multipledestinations
11953
+ - name: checkout.cac.br.roundtrip
11882
11954
  class_name: Henry::Task::CucumberTask
11883
11955
  options:
11884
11956
  tags:
11885
11957
  - checkout
11886
- - book_ok
11887
- - pt
11888
- - multipledestinations
11958
+ - cac
11959
+ - br
11960
+ - roundtrip
11889
11961
  expand: true
11890
11962
  no-source: true
11891
11963
  reports:
@@ -11894,13 +11966,14 @@ tasks:
11894
11966
  recipients:
11895
11967
  - estebanldh@gmail.com
11896
11968
  - nsimean@despegar.com
11897
- - name: checkout.book_ok.in
11969
+ - name: checkout.cac.br.oneway
11898
11970
  class_name: Henry::Task::CucumberTask
11899
11971
  options:
11900
11972
  tags:
11901
11973
  - checkout
11902
- - book_ok
11903
- - in
11974
+ - cac
11975
+ - br
11976
+ - oneway
11904
11977
  expand: true
11905
11978
  no-source: true
11906
11979
  reports:
@@ -11909,13 +11982,13 @@ tasks:
11909
11982
  recipients:
11910
11983
  - estebanldh@gmail.com
11911
11984
  - nsimean@despegar.com
11912
- - name: checkout.book_ok.in.roundtrip
11985
+ - name: checkout.cac.br.roundtrip
11913
11986
  class_name: Henry::Task::CucumberTask
11914
11987
  options:
11915
11988
  tags:
11916
11989
  - checkout
11917
- - book_ok
11918
- - in
11990
+ - cac
11991
+ - br
11919
11992
  - roundtrip
11920
11993
  expand: true
11921
11994
  no-source: true
@@ -11925,14 +11998,12 @@ tasks:
11925
11998
  recipients:
11926
11999
  - estebanldh@gmail.com
11927
12000
  - nsimean@despegar.com
11928
- - name: checkout.book_ok.in.oneway
12001
+ - name: checkout.debito
11929
12002
  class_name: Henry::Task::CucumberTask
11930
12003
  options:
11931
12004
  tags:
11932
12005
  - checkout
11933
- - book_ok
11934
- - in
11935
- - oneway
12006
+ - debito
11936
12007
  expand: true
11937
12008
  no-source: true
11938
12009
  reports:
@@ -11941,14 +12012,13 @@ tasks:
11941
12012
  recipients:
11942
12013
  - estebanldh@gmail.com
11943
12014
  - nsimean@despegar.com
11944
- - name: checkout.book_ok.in.multipledestinations
12015
+ - name: checkout.debito.mx
11945
12016
  class_name: Henry::Task::CucumberTask
11946
12017
  options:
11947
12018
  tags:
11948
12019
  - checkout
11949
- - book_ok
11950
- - in
11951
- - multipledestinations
12020
+ - debito
12021
+ - mx
11952
12022
  expand: true
11953
12023
  no-source: true
11954
12024
  reports:
@@ -11957,13 +12027,14 @@ tasks:
11957
12027
  recipients:
11958
12028
  - estebanldh@gmail.com
11959
12029
  - nsimean@despegar.com
11960
- - name: checkout.book_ok.cn
12030
+ - name: checkout.debito.mx.roundtrip
11961
12031
  class_name: Henry::Task::CucumberTask
11962
12032
  options:
11963
12033
  tags:
11964
12034
  - checkout
11965
- - book_ok
11966
- - cn
12035
+ - debito
12036
+ - mx
12037
+ - roundtrip
11967
12038
  expand: true
11968
12039
  no-source: true
11969
12040
  reports:
@@ -11972,14 +12043,14 @@ tasks:
11972
12043
  recipients:
11973
12044
  - estebanldh@gmail.com
11974
12045
  - nsimean@despegar.com
11975
- - name: checkout.book_ok.cn.roundtrip
12046
+ - name: checkout.debito.mx.oneway
11976
12047
  class_name: Henry::Task::CucumberTask
11977
12048
  options:
11978
12049
  tags:
11979
12050
  - checkout
11980
- - book_ok
11981
- - cn
11982
- - roundtrip
12051
+ - debito
12052
+ - mx
12053
+ - oneway
11983
12054
  expand: true
11984
12055
  no-source: true
11985
12056
  reports:
@@ -11988,14 +12059,14 @@ tasks:
11988
12059
  recipients:
11989
12060
  - estebanldh@gmail.com
11990
12061
  - nsimean@despegar.com
11991
- - name: checkout.book_ok.cn.oneway
12062
+ - name: checkout.debito.mx.multipledestinations
11992
12063
  class_name: Henry::Task::CucumberTask
11993
12064
  options:
11994
12065
  tags:
11995
12066
  - checkout
11996
- - book_ok
11997
- - cn
11998
- - oneway
12067
+ - debito
12068
+ - mx
12069
+ - multipledestinations
11999
12070
  expand: true
12000
12071
  no-source: true
12001
12072
  reports:
@@ -12004,14 +12075,13 @@ tasks:
12004
12075
  recipients:
12005
12076
  - estebanldh@gmail.com
12006
12077
  - nsimean@despegar.com
12007
- - name: checkout.book_ok.cn.multipledestinations
12078
+ - name: checkout.debito.pe
12008
12079
  class_name: Henry::Task::CucumberTask
12009
12080
  options:
12010
12081
  tags:
12011
12082
  - checkout
12012
- - book_ok
12013
- - cn
12014
- - multipledestinations
12083
+ - debito
12084
+ - pe
12015
12085
  expand: true
12016
12086
  no-source: true
12017
12087
  reports:
@@ -12020,13 +12090,14 @@ tasks:
12020
12090
  recipients:
12021
12091
  - estebanldh@gmail.com
12022
12092
  - nsimean@despegar.com
12023
- - name: checkout.book_ok.ar
12093
+ - name: checkout.debito.pe.roundtrip
12024
12094
  class_name: Henry::Task::CucumberTask
12025
12095
  options:
12026
12096
  tags:
12027
12097
  - checkout
12028
- - book_ok
12029
- - ar
12098
+ - debito
12099
+ - pe
12100
+ - roundtrip
12030
12101
  expand: true
12031
12102
  no-source: true
12032
12103
  reports:
@@ -12035,14 +12106,14 @@ tasks:
12035
12106
  recipients:
12036
12107
  - estebanldh@gmail.com
12037
12108
  - nsimean@despegar.com
12038
- - name: checkout.book_ok.ar.roundtrip
12109
+ - name: checkout.debito.pe.oneway
12039
12110
  class_name: Henry::Task::CucumberTask
12040
12111
  options:
12041
12112
  tags:
12042
12113
  - checkout
12043
- - book_ok
12044
- - ar
12045
- - roundtrip
12114
+ - debito
12115
+ - pe
12116
+ - oneway
12046
12117
  expand: true
12047
12118
  no-source: true
12048
12119
  reports:
@@ -12051,14 +12122,14 @@ tasks:
12051
12122
  recipients:
12052
12123
  - estebanldh@gmail.com
12053
12124
  - nsimean@despegar.com
12054
- - name: checkout.book_ok.ar.oneway
12125
+ - name: checkout.debito.pe.multipledestinations
12055
12126
  class_name: Henry::Task::CucumberTask
12056
12127
  options:
12057
12128
  tags:
12058
12129
  - checkout
12059
- - book_ok
12060
- - ar
12061
- - oneway
12130
+ - debito
12131
+ - pe
12132
+ - multipledestinations
12062
12133
  expand: true
12063
12134
  no-source: true
12064
12135
  reports:
@@ -12067,14 +12138,12 @@ tasks:
12067
12138
  recipients:
12068
12139
  - estebanldh@gmail.com
12069
12140
  - nsimean@despegar.com
12070
- - name: checkout.book_ok.ar.multipledestinations
12141
+ - name: checkout.book_ok
12071
12142
  class_name: Henry::Task::CucumberTask
12072
12143
  options:
12073
12144
  tags:
12074
12145
  - checkout
12075
12146
  - book_ok
12076
- - ar
12077
- - multipledestinations
12078
12147
  expand: true
12079
12148
  no-source: true
12080
12149
  reports:
@@ -12083,13 +12152,13 @@ tasks:
12083
12152
  recipients:
12084
12153
  - estebanldh@gmail.com
12085
12154
  - nsimean@despegar.com
12086
- - name: checkout.book_ok.co
12155
+ - name: checkout.book_ok.pt
12087
12156
  class_name: Henry::Task::CucumberTask
12088
12157
  options:
12089
12158
  tags:
12090
12159
  - checkout
12091
12160
  - book_ok
12092
- - co
12161
+ - pt
12093
12162
  expand: true
12094
12163
  no-source: true
12095
12164
  reports:
@@ -12098,13 +12167,13 @@ tasks:
12098
12167
  recipients:
12099
12168
  - estebanldh@gmail.com
12100
12169
  - nsimean@despegar.com
12101
- - name: checkout.book_ok.co.roundtrip
12170
+ - name: checkout.book_ok.pt.roundtrip
12102
12171
  class_name: Henry::Task::CucumberTask
12103
12172
  options:
12104
12173
  tags:
12105
12174
  - checkout
12106
12175
  - book_ok
12107
- - co
12176
+ - pt
12108
12177
  - roundtrip
12109
12178
  expand: true
12110
12179
  no-source: true
@@ -12114,13 +12183,13 @@ tasks:
12114
12183
  recipients:
12115
12184
  - estebanldh@gmail.com
12116
12185
  - nsimean@despegar.com
12117
- - name: checkout.book_ok.co.oneway
12186
+ - name: checkout.book_ok.pt.oneway
12118
12187
  class_name: Henry::Task::CucumberTask
12119
12188
  options:
12120
12189
  tags:
12121
12190
  - checkout
12122
12191
  - book_ok
12123
- - co
12192
+ - pt
12124
12193
  - oneway
12125
12194
  expand: true
12126
12195
  no-source: true
@@ -12130,13 +12199,13 @@ tasks:
12130
12199
  recipients:
12131
12200
  - estebanldh@gmail.com
12132
12201
  - nsimean@despegar.com
12133
- - name: checkout.book_ok.co.multipledestinations
12202
+ - name: checkout.book_ok.pt.multipledestinations
12134
12203
  class_name: Henry::Task::CucumberTask
12135
12204
  options:
12136
12205
  tags:
12137
12206
  - checkout
12138
12207
  - book_ok
12139
- - co
12208
+ - pt
12140
12209
  - multipledestinations
12141
12210
  expand: true
12142
12211
  no-source: true
@@ -12146,13 +12215,13 @@ tasks:
12146
12215
  recipients:
12147
12216
  - estebanldh@gmail.com
12148
12217
  - nsimean@despegar.com
12149
- - name: checkout.book_ok.cl
12218
+ - name: checkout.book_ok.in
12150
12219
  class_name: Henry::Task::CucumberTask
12151
12220
  options:
12152
12221
  tags:
12153
12222
  - checkout
12154
12223
  - book_ok
12155
- - cl
12224
+ - in
12156
12225
  expand: true
12157
12226
  no-source: true
12158
12227
  reports:
@@ -12161,13 +12230,13 @@ tasks:
12161
12230
  recipients:
12162
12231
  - estebanldh@gmail.com
12163
12232
  - nsimean@despegar.com
12164
- - name: checkout.book_ok.cl.roundtrip
12233
+ - name: checkout.book_ok.in.roundtrip
12165
12234
  class_name: Henry::Task::CucumberTask
12166
12235
  options:
12167
12236
  tags:
12168
12237
  - checkout
12169
12238
  - book_ok
12170
- - cl
12239
+ - in
12171
12240
  - roundtrip
12172
12241
  expand: true
12173
12242
  no-source: true
@@ -12177,13 +12246,13 @@ tasks:
12177
12246
  recipients:
12178
12247
  - estebanldh@gmail.com
12179
12248
  - nsimean@despegar.com
12180
- - name: checkout.book_ok.cl.oneway
12249
+ - name: checkout.book_ok.in.oneway
12181
12250
  class_name: Henry::Task::CucumberTask
12182
12251
  options:
12183
12252
  tags:
12184
12253
  - checkout
12185
12254
  - book_ok
12186
- - cl
12255
+ - in
12187
12256
  - oneway
12188
12257
  expand: true
12189
12258
  no-source: true
@@ -12193,13 +12262,13 @@ tasks:
12193
12262
  recipients:
12194
12263
  - estebanldh@gmail.com
12195
12264
  - nsimean@despegar.com
12196
- - name: checkout.book_ok.cl.multipledestinations
12265
+ - name: checkout.book_ok.in.multipledestinations
12197
12266
  class_name: Henry::Task::CucumberTask
12198
12267
  options:
12199
12268
  tags:
12200
12269
  - checkout
12201
12270
  - book_ok
12202
- - cl
12271
+ - in
12203
12272
  - multipledestinations
12204
12273
  expand: true
12205
12274
  no-source: true
@@ -12209,13 +12278,13 @@ tasks:
12209
12278
  recipients:
12210
12279
  - estebanldh@gmail.com
12211
12280
  - nsimean@despegar.com
12212
- - name: checkout.book_ok.cr
12281
+ - name: checkout.book_ok.cn
12213
12282
  class_name: Henry::Task::CucumberTask
12214
12283
  options:
12215
12284
  tags:
12216
12285
  - checkout
12217
12286
  - book_ok
12218
- - cr
12287
+ - cn
12219
12288
  expand: true
12220
12289
  no-source: true
12221
12290
  reports:
@@ -12224,13 +12293,13 @@ tasks:
12224
12293
  recipients:
12225
12294
  - estebanldh@gmail.com
12226
12295
  - nsimean@despegar.com
12227
- - name: checkout.book_ok.cr.roundtrip
12296
+ - name: checkout.book_ok.cn.roundtrip
12228
12297
  class_name: Henry::Task::CucumberTask
12229
12298
  options:
12230
12299
  tags:
12231
12300
  - checkout
12232
12301
  - book_ok
12233
- - cr
12302
+ - cn
12234
12303
  - roundtrip
12235
12304
  expand: true
12236
12305
  no-source: true
@@ -12240,13 +12309,13 @@ tasks:
12240
12309
  recipients:
12241
12310
  - estebanldh@gmail.com
12242
12311
  - nsimean@despegar.com
12243
- - name: checkout.book_ok.cr.oneway
12312
+ - name: checkout.book_ok.cn.oneway
12244
12313
  class_name: Henry::Task::CucumberTask
12245
12314
  options:
12246
12315
  tags:
12247
12316
  - checkout
12248
12317
  - book_ok
12249
- - cr
12318
+ - cn
12250
12319
  - oneway
12251
12320
  expand: true
12252
12321
  no-source: true
@@ -12256,13 +12325,13 @@ tasks:
12256
12325
  recipients:
12257
12326
  - estebanldh@gmail.com
12258
12327
  - nsimean@despegar.com
12259
- - name: checkout.book_ok.cr.multipledestinations
12328
+ - name: checkout.book_ok.cn.multipledestinations
12260
12329
  class_name: Henry::Task::CucumberTask
12261
12330
  options:
12262
12331
  tags:
12263
12332
  - checkout
12264
12333
  - book_ok
12265
- - cr
12334
+ - cn
12266
12335
  - multipledestinations
12267
12336
  expand: true
12268
12337
  no-source: true
@@ -12272,13 +12341,13 @@ tasks:
12272
12341
  recipients:
12273
12342
  - estebanldh@gmail.com
12274
12343
  - nsimean@despegar.com
12275
- - name: checkout.book_ok.ec
12344
+ - name: checkout.book_ok.ar
12276
12345
  class_name: Henry::Task::CucumberTask
12277
12346
  options:
12278
12347
  tags:
12279
12348
  - checkout
12280
12349
  - book_ok
12281
- - ec
12350
+ - ar
12282
12351
  expand: true
12283
12352
  no-source: true
12284
12353
  reports:
@@ -12287,13 +12356,13 @@ tasks:
12287
12356
  recipients:
12288
12357
  - estebanldh@gmail.com
12289
12358
  - nsimean@despegar.com
12290
- - name: checkout.book_ok.ec.roundtrip
12359
+ - name: checkout.book_ok.ar.roundtrip
12291
12360
  class_name: Henry::Task::CucumberTask
12292
12361
  options:
12293
12362
  tags:
12294
12363
  - checkout
12295
12364
  - book_ok
12296
- - ec
12365
+ - ar
12297
12366
  - roundtrip
12298
12367
  expand: true
12299
12368
  no-source: true
@@ -12303,13 +12372,13 @@ tasks:
12303
12372
  recipients:
12304
12373
  - estebanldh@gmail.com
12305
12374
  - nsimean@despegar.com
12306
- - name: checkout.book_ok.ec.oneway
12375
+ - name: checkout.book_ok.ar.oneway
12307
12376
  class_name: Henry::Task::CucumberTask
12308
12377
  options:
12309
12378
  tags:
12310
12379
  - checkout
12311
12380
  - book_ok
12312
- - ec
12381
+ - ar
12313
12382
  - oneway
12314
12383
  expand: true
12315
12384
  no-source: true
@@ -12319,13 +12388,13 @@ tasks:
12319
12388
  recipients:
12320
12389
  - estebanldh@gmail.com
12321
12390
  - nsimean@despegar.com
12322
- - name: checkout.book_ok.ec.multipledestinations
12391
+ - name: checkout.book_ok.ar.multipledestinations
12323
12392
  class_name: Henry::Task::CucumberTask
12324
12393
  options:
12325
12394
  tags:
12326
12395
  - checkout
12327
12396
  - book_ok
12328
- - ec
12397
+ - ar
12329
12398
  - multipledestinations
12330
12399
  expand: true
12331
12400
  no-source: true
@@ -12335,13 +12404,13 @@ tasks:
12335
12404
  recipients:
12336
12405
  - estebanldh@gmail.com
12337
12406
  - nsimean@despegar.com
12338
- - name: checkout.book_ok.mx
12407
+ - name: checkout.book_ok.co
12339
12408
  class_name: Henry::Task::CucumberTask
12340
12409
  options:
12341
12410
  tags:
12342
12411
  - checkout
12343
12412
  - book_ok
12344
- - mx
12413
+ - co
12345
12414
  expand: true
12346
12415
  no-source: true
12347
12416
  reports:
@@ -12350,13 +12419,13 @@ tasks:
12350
12419
  recipients:
12351
12420
  - estebanldh@gmail.com
12352
12421
  - nsimean@despegar.com
12353
- - name: checkout.book_ok.mx.roundtrip
12422
+ - name: checkout.book_ok.co.roundtrip
12354
12423
  class_name: Henry::Task::CucumberTask
12355
12424
  options:
12356
12425
  tags:
12357
12426
  - checkout
12358
12427
  - book_ok
12359
- - mx
12428
+ - co
12360
12429
  - roundtrip
12361
12430
  expand: true
12362
12431
  no-source: true
@@ -12366,13 +12435,13 @@ tasks:
12366
12435
  recipients:
12367
12436
  - estebanldh@gmail.com
12368
12437
  - nsimean@despegar.com
12369
- - name: checkout.book_ok.mx.oneway
12438
+ - name: checkout.book_ok.co.oneway
12370
12439
  class_name: Henry::Task::CucumberTask
12371
12440
  options:
12372
12441
  tags:
12373
12442
  - checkout
12374
12443
  - book_ok
12375
- - mx
12444
+ - co
12376
12445
  - oneway
12377
12446
  expand: true
12378
12447
  no-source: true
@@ -12382,13 +12451,13 @@ tasks:
12382
12451
  recipients:
12383
12452
  - estebanldh@gmail.com
12384
12453
  - nsimean@despegar.com
12385
- - name: checkout.book_ok.mx.multipledestinations
12454
+ - name: checkout.book_ok.co.multipledestinations
12386
12455
  class_name: Henry::Task::CucumberTask
12387
12456
  options:
12388
12457
  tags:
12389
12458
  - checkout
12390
12459
  - book_ok
12391
- - mx
12460
+ - co
12392
12461
  - multipledestinations
12393
12462
  expand: true
12394
12463
  no-source: true
@@ -12398,13 +12467,13 @@ tasks:
12398
12467
  recipients:
12399
12468
  - estebanldh@gmail.com
12400
12469
  - nsimean@despegar.com
12401
- - name: checkout.book_ok.pa
12470
+ - name: checkout.book_ok.cl
12402
12471
  class_name: Henry::Task::CucumberTask
12403
12472
  options:
12404
12473
  tags:
12405
12474
  - checkout
12406
12475
  - book_ok
12407
- - pa
12476
+ - cl
12408
12477
  expand: true
12409
12478
  no-source: true
12410
12479
  reports:
@@ -12413,13 +12482,13 @@ tasks:
12413
12482
  recipients:
12414
12483
  - estebanldh@gmail.com
12415
12484
  - nsimean@despegar.com
12416
- - name: checkout.book_ok.pa.roundtrip
12485
+ - name: checkout.book_ok.cl.roundtrip
12417
12486
  class_name: Henry::Task::CucumberTask
12418
12487
  options:
12419
12488
  tags:
12420
12489
  - checkout
12421
12490
  - book_ok
12422
- - pa
12491
+ - cl
12423
12492
  - roundtrip
12424
12493
  expand: true
12425
12494
  no-source: true
@@ -12429,13 +12498,13 @@ tasks:
12429
12498
  recipients:
12430
12499
  - estebanldh@gmail.com
12431
12500
  - nsimean@despegar.com
12432
- - name: checkout.book_ok.pa.oneway
12501
+ - name: checkout.book_ok.cl.oneway
12433
12502
  class_name: Henry::Task::CucumberTask
12434
12503
  options:
12435
12504
  tags:
12436
12505
  - checkout
12437
12506
  - book_ok
12438
- - pa
12507
+ - cl
12439
12508
  - oneway
12440
12509
  expand: true
12441
12510
  no-source: true
@@ -12445,13 +12514,13 @@ tasks:
12445
12514
  recipients:
12446
12515
  - estebanldh@gmail.com
12447
12516
  - nsimean@despegar.com
12448
- - name: checkout.book_ok.pa.multipledestinations
12517
+ - name: checkout.book_ok.cl.multipledestinations
12449
12518
  class_name: Henry::Task::CucumberTask
12450
12519
  options:
12451
12520
  tags:
12452
12521
  - checkout
12453
12522
  - book_ok
12454
- - pa
12523
+ - cl
12455
12524
  - multipledestinations
12456
12525
  expand: true
12457
12526
  no-source: true
@@ -12461,13 +12530,13 @@ tasks:
12461
12530
  recipients:
12462
12531
  - estebanldh@gmail.com
12463
12532
  - nsimean@despegar.com
12464
- - name: checkout.book_ok.pe
12533
+ - name: checkout.book_ok.cr
12465
12534
  class_name: Henry::Task::CucumberTask
12466
12535
  options:
12467
12536
  tags:
12468
12537
  - checkout
12469
12538
  - book_ok
12470
- - pe
12539
+ - cr
12471
12540
  expand: true
12472
12541
  no-source: true
12473
12542
  reports:
@@ -12476,13 +12545,13 @@ tasks:
12476
12545
  recipients:
12477
12546
  - estebanldh@gmail.com
12478
12547
  - nsimean@despegar.com
12479
- - name: checkout.book_ok.pe.roundtrip
12548
+ - name: checkout.book_ok.cr.roundtrip
12480
12549
  class_name: Henry::Task::CucumberTask
12481
12550
  options:
12482
12551
  tags:
12483
12552
  - checkout
12484
12553
  - book_ok
12485
- - pe
12554
+ - cr
12486
12555
  - roundtrip
12487
12556
  expand: true
12488
12557
  no-source: true
@@ -12492,13 +12561,13 @@ tasks:
12492
12561
  recipients:
12493
12562
  - estebanldh@gmail.com
12494
12563
  - nsimean@despegar.com
12495
- - name: checkout.book_ok.pe.oneway
12564
+ - name: checkout.book_ok.cr.oneway
12496
12565
  class_name: Henry::Task::CucumberTask
12497
12566
  options:
12498
12567
  tags:
12499
12568
  - checkout
12500
12569
  - book_ok
12501
- - pe
12570
+ - cr
12502
12571
  - oneway
12503
12572
  expand: true
12504
12573
  no-source: true
@@ -12508,13 +12577,13 @@ tasks:
12508
12577
  recipients:
12509
12578
  - estebanldh@gmail.com
12510
12579
  - nsimean@despegar.com
12511
- - name: checkout.book_ok.pe.multipledestinations
12580
+ - name: checkout.book_ok.cr.multipledestinations
12512
12581
  class_name: Henry::Task::CucumberTask
12513
12582
  options:
12514
12583
  tags:
12515
12584
  - checkout
12516
12585
  - book_ok
12517
- - pe
12586
+ - cr
12518
12587
  - multipledestinations
12519
12588
  expand: true
12520
12589
  no-source: true
@@ -12524,13 +12593,13 @@ tasks:
12524
12593
  recipients:
12525
12594
  - estebanldh@gmail.com
12526
12595
  - nsimean@despegar.com
12527
- - name: checkout.book_ok.us
12596
+ - name: checkout.book_ok.ec
12528
12597
  class_name: Henry::Task::CucumberTask
12529
12598
  options:
12530
12599
  tags:
12531
12600
  - checkout
12532
12601
  - book_ok
12533
- - us
12602
+ - ec
12534
12603
  expand: true
12535
12604
  no-source: true
12536
12605
  reports:
@@ -12539,13 +12608,13 @@ tasks:
12539
12608
  recipients:
12540
12609
  - estebanldh@gmail.com
12541
12610
  - nsimean@despegar.com
12542
- - name: checkout.book_ok.us.roundtrip
12611
+ - name: checkout.book_ok.ec.roundtrip
12543
12612
  class_name: Henry::Task::CucumberTask
12544
12613
  options:
12545
12614
  tags:
12546
12615
  - checkout
12547
12616
  - book_ok
12548
- - us
12617
+ - ec
12549
12618
  - roundtrip
12550
12619
  expand: true
12551
12620
  no-source: true
@@ -12555,13 +12624,13 @@ tasks:
12555
12624
  recipients:
12556
12625
  - estebanldh@gmail.com
12557
12626
  - nsimean@despegar.com
12558
- - name: checkout.book_ok.us.oneway
12627
+ - name: checkout.book_ok.ec.oneway
12559
12628
  class_name: Henry::Task::CucumberTask
12560
12629
  options:
12561
12630
  tags:
12562
12631
  - checkout
12563
12632
  - book_ok
12564
- - us
12633
+ - ec
12565
12634
  - oneway
12566
12635
  expand: true
12567
12636
  no-source: true
@@ -12571,13 +12640,13 @@ tasks:
12571
12640
  recipients:
12572
12641
  - estebanldh@gmail.com
12573
12642
  - nsimean@despegar.com
12574
- - name: checkout.book_ok.us.multipledestinations
12643
+ - name: checkout.book_ok.ec.multipledestinations
12575
12644
  class_name: Henry::Task::CucumberTask
12576
12645
  options:
12577
12646
  tags:
12578
12647
  - checkout
12579
12648
  - book_ok
12580
- - us
12649
+ - ec
12581
12650
  - multipledestinations
12582
12651
  expand: true
12583
12652
  no-source: true
@@ -12587,13 +12656,13 @@ tasks:
12587
12656
  recipients:
12588
12657
  - estebanldh@gmail.com
12589
12658
  - nsimean@despegar.com
12590
- - name: checkout.book_ok.uy
12659
+ - name: checkout.book_ok.mx
12591
12660
  class_name: Henry::Task::CucumberTask
12592
12661
  options:
12593
12662
  tags:
12594
12663
  - checkout
12595
12664
  - book_ok
12596
- - uy
12665
+ - mx
12597
12666
  expand: true
12598
12667
  no-source: true
12599
12668
  reports:
@@ -12602,13 +12671,13 @@ tasks:
12602
12671
  recipients:
12603
12672
  - estebanldh@gmail.com
12604
12673
  - nsimean@despegar.com
12605
- - name: checkout.book_ok.uy.roundtrip
12674
+ - name: checkout.book_ok.mx.roundtrip
12606
12675
  class_name: Henry::Task::CucumberTask
12607
12676
  options:
12608
12677
  tags:
12609
12678
  - checkout
12610
12679
  - book_ok
12611
- - uy
12680
+ - mx
12612
12681
  - roundtrip
12613
12682
  expand: true
12614
12683
  no-source: true
@@ -12618,13 +12687,13 @@ tasks:
12618
12687
  recipients:
12619
12688
  - estebanldh@gmail.com
12620
12689
  - nsimean@despegar.com
12621
- - name: checkout.book_ok.uy.oneway
12690
+ - name: checkout.book_ok.mx.oneway
12622
12691
  class_name: Henry::Task::CucumberTask
12623
12692
  options:
12624
12693
  tags:
12625
12694
  - checkout
12626
12695
  - book_ok
12627
- - uy
12696
+ - mx
12628
12697
  - oneway
12629
12698
  expand: true
12630
12699
  no-source: true
@@ -12634,13 +12703,13 @@ tasks:
12634
12703
  recipients:
12635
12704
  - estebanldh@gmail.com
12636
12705
  - nsimean@despegar.com
12637
- - name: checkout.book_ok.uy.multipledestinations
12706
+ - name: checkout.book_ok.mx.multipledestinations
12638
12707
  class_name: Henry::Task::CucumberTask
12639
12708
  options:
12640
12709
  tags:
12641
12710
  - checkout
12642
12711
  - book_ok
12643
- - uy
12712
+ - mx
12644
12713
  - multipledestinations
12645
12714
  expand: true
12646
12715
  no-source: true
@@ -12650,13 +12719,13 @@ tasks:
12650
12719
  recipients:
12651
12720
  - estebanldh@gmail.com
12652
12721
  - nsimean@despegar.com
12653
- - name: checkout.book_ok.ve
12722
+ - name: checkout.book_ok.pa
12654
12723
  class_name: Henry::Task::CucumberTask
12655
12724
  options:
12656
12725
  tags:
12657
12726
  - checkout
12658
12727
  - book_ok
12659
- - ve
12728
+ - pa
12660
12729
  expand: true
12661
12730
  no-source: true
12662
12731
  reports:
@@ -12665,13 +12734,13 @@ tasks:
12665
12734
  recipients:
12666
12735
  - estebanldh@gmail.com
12667
12736
  - nsimean@despegar.com
12668
- - name: checkout.book_ok.ve.roundtrip
12737
+ - name: checkout.book_ok.pa.roundtrip
12669
12738
  class_name: Henry::Task::CucumberTask
12670
12739
  options:
12671
12740
  tags:
12672
12741
  - checkout
12673
12742
  - book_ok
12674
- - ve
12743
+ - pa
12675
12744
  - roundtrip
12676
12745
  expand: true
12677
12746
  no-source: true
@@ -12681,13 +12750,13 @@ tasks:
12681
12750
  recipients:
12682
12751
  - estebanldh@gmail.com
12683
12752
  - nsimean@despegar.com
12684
- - name: checkout.book_ok.ve.oneway
12753
+ - name: checkout.book_ok.pa.oneway
12685
12754
  class_name: Henry::Task::CucumberTask
12686
12755
  options:
12687
12756
  tags:
12688
12757
  - checkout
12689
12758
  - book_ok
12690
- - ve
12759
+ - pa
12691
12760
  - oneway
12692
12761
  expand: true
12693
12762
  no-source: true
@@ -12697,13 +12766,13 @@ tasks:
12697
12766
  recipients:
12698
12767
  - estebanldh@gmail.com
12699
12768
  - nsimean@despegar.com
12700
- - name: checkout.book_ok.ve.multipledestinations
12769
+ - name: checkout.book_ok.pa.multipledestinations
12701
12770
  class_name: Henry::Task::CucumberTask
12702
12771
  options:
12703
12772
  tags:
12704
12773
  - checkout
12705
12774
  - book_ok
12706
- - ve
12775
+ - pa
12707
12776
  - multipledestinations
12708
12777
  expand: true
12709
12778
  no-source: true
@@ -12713,13 +12782,13 @@ tasks:
12713
12782
  recipients:
12714
12783
  - estebanldh@gmail.com
12715
12784
  - nsimean@despegar.com
12716
- - name: checkout.book_ok.br
12785
+ - name: checkout.book_ok.pe
12717
12786
  class_name: Henry::Task::CucumberTask
12718
12787
  options:
12719
12788
  tags:
12720
12789
  - checkout
12721
12790
  - book_ok
12722
- - br
12791
+ - pe
12723
12792
  expand: true
12724
12793
  no-source: true
12725
12794
  reports:
@@ -12728,13 +12797,13 @@ tasks:
12728
12797
  recipients:
12729
12798
  - estebanldh@gmail.com
12730
12799
  - nsimean@despegar.com
12731
- - name: checkout.book_ok.br.roundtrip
12800
+ - name: checkout.book_ok.pe.roundtrip
12732
12801
  class_name: Henry::Task::CucumberTask
12733
12802
  options:
12734
12803
  tags:
12735
12804
  - checkout
12736
12805
  - book_ok
12737
- - br
12806
+ - pe
12738
12807
  - roundtrip
12739
12808
  expand: true
12740
12809
  no-source: true
@@ -12744,13 +12813,13 @@ tasks:
12744
12813
  recipients:
12745
12814
  - estebanldh@gmail.com
12746
12815
  - nsimean@despegar.com
12747
- - name: checkout.book_ok.br.oneway
12816
+ - name: checkout.book_ok.pe.oneway
12748
12817
  class_name: Henry::Task::CucumberTask
12749
12818
  options:
12750
12819
  tags:
12751
12820
  - checkout
12752
12821
  - book_ok
12753
- - br
12822
+ - pe
12754
12823
  - oneway
12755
12824
  expand: true
12756
12825
  no-source: true
@@ -12760,13 +12829,13 @@ tasks:
12760
12829
  recipients:
12761
12830
  - estebanldh@gmail.com
12762
12831
  - nsimean@despegar.com
12763
- - name: checkout.book_ok.br.multipledestinations
12832
+ - name: checkout.book_ok.pe.multipledestinations
12764
12833
  class_name: Henry::Task::CucumberTask
12765
12834
  options:
12766
12835
  tags:
12767
12836
  - checkout
12768
12837
  - book_ok
12769
- - br
12838
+ - pe
12770
12839
  - multipledestinations
12771
12840
  expand: true
12772
12841
  no-source: true
@@ -12776,12 +12845,13 @@ tasks:
12776
12845
  recipients:
12777
12846
  - estebanldh@gmail.com
12778
12847
  - nsimean@despegar.com
12779
- - name: checkout.cupones
12848
+ - name: checkout.book_ok.us
12780
12849
  class_name: Henry::Task::CucumberTask
12781
12850
  options:
12782
12851
  tags:
12783
12852
  - checkout
12784
- - cupones
12853
+ - book_ok
12854
+ - us
12785
12855
  expand: true
12786
12856
  no-source: true
12787
12857
  reports:
@@ -12790,13 +12860,14 @@ tasks:
12790
12860
  recipients:
12791
12861
  - estebanldh@gmail.com
12792
12862
  - nsimean@despegar.com
12793
- - name: checkout.cupones.ar
12863
+ - name: checkout.book_ok.us.roundtrip
12794
12864
  class_name: Henry::Task::CucumberTask
12795
12865
  options:
12796
12866
  tags:
12797
12867
  - checkout
12798
- - cupones
12799
- - ar
12868
+ - book_ok
12869
+ - us
12870
+ - roundtrip
12800
12871
  expand: true
12801
12872
  no-source: true
12802
12873
  reports:
@@ -12805,12 +12876,14 @@ tasks:
12805
12876
  recipients:
12806
12877
  - estebanldh@gmail.com
12807
12878
  - nsimean@despegar.com
12808
- - name: checkout.cash_payment
12879
+ - name: checkout.book_ok.us.oneway
12809
12880
  class_name: Henry::Task::CucumberTask
12810
12881
  options:
12811
12882
  tags:
12812
12883
  - checkout
12813
- - cash_payment
12884
+ - book_ok
12885
+ - us
12886
+ - oneway
12814
12887
  expand: true
12815
12888
  no-source: true
12816
12889
  reports:
@@ -12819,13 +12892,14 @@ tasks:
12819
12892
  recipients:
12820
12893
  - estebanldh@gmail.com
12821
12894
  - nsimean@despegar.com
12822
- - name: checkout.cash_payment.ar
12895
+ - name: checkout.book_ok.us.multipledestinations
12823
12896
  class_name: Henry::Task::CucumberTask
12824
12897
  options:
12825
12898
  tags:
12826
12899
  - checkout
12827
- - cash_payment
12828
- - ar
12900
+ - book_ok
12901
+ - us
12902
+ - multipledestinations
12829
12903
  expand: true
12830
12904
  no-source: true
12831
12905
  reports:
@@ -12834,13 +12908,13 @@ tasks:
12834
12908
  recipients:
12835
12909
  - estebanldh@gmail.com
12836
12910
  - nsimean@despegar.com
12837
- - name: checkout.cash_payment.pe
12911
+ - name: checkout.book_ok.uy
12838
12912
  class_name: Henry::Task::CucumberTask
12839
12913
  options:
12840
12914
  tags:
12841
12915
  - checkout
12842
- - cash_payment
12843
- - pe
12916
+ - book_ok
12917
+ - uy
12844
12918
  expand: true
12845
12919
  no-source: true
12846
12920
  reports:
@@ -12849,13 +12923,14 @@ tasks:
12849
12923
  recipients:
12850
12924
  - estebanldh@gmail.com
12851
12925
  - nsimean@despegar.com
12852
- - name: checkout.cash_payment.br
12926
+ - name: checkout.book_ok.uy.roundtrip
12853
12927
  class_name: Henry::Task::CucumberTask
12854
12928
  options:
12855
12929
  tags:
12856
12930
  - checkout
12857
- - cash_payment
12858
- - br
12931
+ - book_ok
12932
+ - uy
12933
+ - roundtrip
12859
12934
  expand: true
12860
12935
  no-source: true
12861
12936
  reports:
@@ -12864,13 +12939,14 @@ tasks:
12864
12939
  recipients:
12865
12940
  - estebanldh@gmail.com
12866
12941
  - nsimean@despegar.com
12867
- - name: checkout.cash_payment.co
12942
+ - name: checkout.book_ok.uy.oneway
12868
12943
  class_name: Henry::Task::CucumberTask
12869
12944
  options:
12870
12945
  tags:
12871
12946
  - checkout
12872
- - cash_payment
12873
- - co
12947
+ - book_ok
12948
+ - uy
12949
+ - oneway
12874
12950
  expand: true
12875
12951
  no-source: true
12876
12952
  reports:
@@ -12879,13 +12955,14 @@ tasks:
12879
12955
  recipients:
12880
12956
  - estebanldh@gmail.com
12881
12957
  - nsimean@despegar.com
12882
- - name: checkout.cash_payment.mx
12958
+ - name: checkout.book_ok.uy.multipledestinations
12883
12959
  class_name: Henry::Task::CucumberTask
12884
12960
  options:
12885
12961
  tags:
12886
12962
  - checkout
12887
- - cash_payment
12888
- - mx
12963
+ - book_ok
12964
+ - uy
12965
+ - multipledestinations
12889
12966
  expand: true
12890
12967
  no-source: true
12891
12968
  reports:
@@ -12894,12 +12971,12 @@ tasks:
12894
12971
  recipients:
12895
12972
  - estebanldh@gmail.com
12896
12973
  - nsimean@despegar.com
12897
- - name: checkout.cash_payment.ve
12974
+ - name: checkout.book_ok.ve
12898
12975
  class_name: Henry::Task::CucumberTask
12899
12976
  options:
12900
12977
  tags:
12901
12978
  - checkout
12902
- - cash_payment
12979
+ - book_ok
12903
12980
  - ve
12904
12981
  expand: true
12905
12982
  no-source: true
@@ -12909,13 +12986,14 @@ tasks:
12909
12986
  recipients:
12910
12987
  - estebanldh@gmail.com
12911
12988
  - nsimean@despegar.com
12912
- - name: checkout.cash_payment.cl
12989
+ - name: checkout.book_ok.ve.roundtrip
12913
12990
  class_name: Henry::Task::CucumberTask
12914
12991
  options:
12915
12992
  tags:
12916
12993
  - checkout
12917
- - cash_payment
12918
- - cl
12994
+ - book_ok
12995
+ - ve
12996
+ - roundtrip
12919
12997
  expand: true
12920
12998
  no-source: true
12921
12999
  reports:
@@ -12924,13 +13002,14 @@ tasks:
12924
13002
  recipients:
12925
13003
  - estebanldh@gmail.com
12926
13004
  - nsimean@despegar.com
12927
- - name: checkout.cash_payment.cr
13005
+ - name: checkout.book_ok.ve.oneway
12928
13006
  class_name: Henry::Task::CucumberTask
12929
13007
  options:
12930
13008
  tags:
12931
13009
  - checkout
12932
- - cash_payment
12933
- - cr
13010
+ - book_ok
13011
+ - ve
13012
+ - oneway
12934
13013
  expand: true
12935
13014
  no-source: true
12936
13015
  reports:
@@ -12939,13 +13018,14 @@ tasks:
12939
13018
  recipients:
12940
13019
  - estebanldh@gmail.com
12941
13020
  - nsimean@despegar.com
12942
- - name: checkout.cash_payment.ec
13021
+ - name: checkout.book_ok.ve.multipledestinations
12943
13022
  class_name: Henry::Task::CucumberTask
12944
13023
  options:
12945
13024
  tags:
12946
13025
  - checkout
12947
- - cash_payment
12948
- - ec
13026
+ - book_ok
13027
+ - ve
13028
+ - multipledestinations
12949
13029
  expand: true
12950
13030
  no-source: true
12951
13031
  reports:
@@ -12954,13 +13034,13 @@ tasks:
12954
13034
  recipients:
12955
13035
  - estebanldh@gmail.com
12956
13036
  - nsimean@despegar.com
12957
- - name: checkout.cash_payment.pa
13037
+ - name: checkout.book_ok.br
12958
13038
  class_name: Henry::Task::CucumberTask
12959
13039
  options:
12960
13040
  tags:
12961
13041
  - checkout
12962
- - cash_payment
12963
- - pa
13042
+ - book_ok
13043
+ - br
12964
13044
  expand: true
12965
13045
  no-source: true
12966
13046
  reports:
@@ -12969,13 +13049,14 @@ tasks:
12969
13049
  recipients:
12970
13050
  - estebanldh@gmail.com
12971
13051
  - nsimean@despegar.com
12972
- - name: checkout.cash_payment.us
13052
+ - name: checkout.book_ok.br.roundtrip
12973
13053
  class_name: Henry::Task::CucumberTask
12974
13054
  options:
12975
13055
  tags:
12976
13056
  - checkout
12977
- - cash_payment
12978
- - us
13057
+ - book_ok
13058
+ - br
13059
+ - roundtrip
12979
13060
  expand: true
12980
13061
  no-source: true
12981
13062
  reports:
@@ -12984,13 +13065,14 @@ tasks:
12984
13065
  recipients:
12985
13066
  - estebanldh@gmail.com
12986
13067
  - nsimean@despegar.com
12987
- - name: checkout.cash_payment.uy
13068
+ - name: checkout.book_ok.br.oneway
12988
13069
  class_name: Henry::Task::CucumberTask
12989
13070
  options:
12990
13071
  tags:
12991
13072
  - checkout
12992
- - cash_payment
12993
- - uy
13073
+ - book_ok
13074
+ - br
13075
+ - oneway
12994
13076
  expand: true
12995
13077
  no-source: true
12996
13078
  reports:
@@ -12999,13 +13081,14 @@ tasks:
12999
13081
  recipients:
13000
13082
  - estebanldh@gmail.com
13001
13083
  - nsimean@despegar.com
13002
- - name: checkout.cash_payment.pr
13084
+ - name: checkout.book_ok.br.multipledestinations
13003
13085
  class_name: Henry::Task::CucumberTask
13004
13086
  options:
13005
13087
  tags:
13006
13088
  - checkout
13007
- - cash_payment
13008
- - pr
13089
+ - book_ok
13090
+ - br
13091
+ - multipledestinations
13009
13092
  expand: true
13010
13093
  no-source: true
13011
13094
  reports:
@@ -13901,13 +13984,13 @@ tasks:
13901
13984
  recipients:
13902
13985
  - estebanldh@gmail.com
13903
13986
  - nsimean@despegar.com
13904
- - name: checkout.providers.gds
13987
+ - name: checkout.providers.wds
13905
13988
  class_name: Henry::Task::CucumberTask
13906
13989
  options:
13907
13990
  tags:
13908
13991
  - checkout
13909
13992
  - providers
13910
- - gds
13993
+ - wds
13911
13994
  expand: true
13912
13995
  no-source: true
13913
13996
  reports:
@@ -13960,94 +14043,6 @@ tasks:
13960
14043
  recipients:
13961
14044
  - estebanldh@gmail.com
13962
14045
  - nsimean@despegar.com
13963
- - name: checkout.agency
13964
- class_name: Henry::Task::CucumberTask
13965
- options:
13966
- tags:
13967
- - checkout
13968
- - agency
13969
- expand: true
13970
- no-source: true
13971
- reports:
13972
- - format: html
13973
- name: ${DATE}_${TASK_NAME}.html
13974
- recipients:
13975
- - estebanldh@gmail.com
13976
- - nsimean@despegar.com
13977
- - name: checkout.agency.us
13978
- class_name: Henry::Task::CucumberTask
13979
- options:
13980
- tags:
13981
- - checkout
13982
- - agency
13983
- - us
13984
- expand: true
13985
- no-source: true
13986
- reports:
13987
- - format: html
13988
- name: ${DATE}_${TASK_NAME}.html
13989
- recipients:
13990
- - estebanldh@gmail.com
13991
- - nsimean@despegar.com
13992
- - name: checkout.agency.ar
13993
- class_name: Henry::Task::CucumberTask
13994
- options:
13995
- tags:
13996
- - checkout
13997
- - agency
13998
- - ar
13999
- expand: true
14000
- no-source: true
14001
- reports:
14002
- - format: html
14003
- name: ${DATE}_${TASK_NAME}.html
14004
- recipients:
14005
- - estebanldh@gmail.com
14006
- - nsimean@despegar.com
14007
- - name: checkout.agency.br
14008
- class_name: Henry::Task::CucumberTask
14009
- options:
14010
- tags:
14011
- - checkout
14012
- - agency
14013
- - br
14014
- expand: true
14015
- no-source: true
14016
- reports:
14017
- - format: html
14018
- name: ${DATE}_${TASK_NAME}.html
14019
- recipients:
14020
- - estebanldh@gmail.com
14021
- - nsimean@despegar.com
14022
- - name: checkout.booking_2_ow
14023
- class_name: Henry::Task::CucumberTask
14024
- options:
14025
- tags:
14026
- - checkout
14027
- - booking_2_ow
14028
- expand: true
14029
- no-source: true
14030
- reports:
14031
- - format: html
14032
- name: ${DATE}_${TASK_NAME}.html
14033
- recipients:
14034
- - estebanldh@gmail.com
14035
- - nsimean@despegar.com
14036
- - name: checkout.booking_2_ow.br
14037
- class_name: Henry::Task::CucumberTask
14038
- options:
14039
- tags:
14040
- - checkout
14041
- - booking_2_ow
14042
- - br
14043
- expand: true
14044
- no-source: true
14045
- reports:
14046
- - format: html
14047
- name: ${DATE}_${TASK_NAME}.html
14048
- recipients:
14049
- - estebanldh@gmail.com
14050
- - nsimean@despegar.com
14051
14046
  - name: results
14052
14047
  class_name: Henry::Task::CucumberTask
14053
14048
  options:
@@ -14061,11 +14056,11 @@ tasks:
14061
14056
  recipients:
14062
14057
  - estebanldh@gmail.com
14063
14058
  - nsimean@despegar.com
14064
- - name: checkout
14059
+ - name: landing
14065
14060
  class_name: Henry::Task::CucumberTask
14066
14061
  options:
14067
14062
  tags:
14068
- - checkout
14063
+ - landing
14069
14064
  expand: true
14070
14065
  no-source: true
14071
14066
  reports:
@@ -14074,11 +14069,11 @@ tasks:
14074
14069
  recipients:
14075
14070
  - estebanldh@gmail.com
14076
14071
  - nsimean@despegar.com
14077
- - name: landing
14072
+ - name: checkout
14078
14073
  class_name: Henry::Task::CucumberTask
14079
14074
  options:
14080
14075
  tags:
14081
- - landing
14076
+ - checkout
14082
14077
  expand: true
14083
14078
  no-source: true
14084
14079
  reports: