flights_gui_henry_tests 3.0.4 → 3.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 698a67a7291b4a4fb67a7136646adbc62a1e67d3
4
- data.tar.gz: 590fb5336e0635d51e9a5d5290c57f3ab30575df
3
+ metadata.gz: 7ef9a36ea85346db5a86df546c9b961a077e1c35
4
+ data.tar.gz: b35a980e8b4dc05b4d7079d0ed0e4730b03870ea
5
5
  SHA512:
6
- metadata.gz: 43faf3bc4c54ce9899cf644409d12fb421da682e4caa19c13583f6bbcf7f5dbc5fa32d709d7ff492a2dce22442e185a11e9f963110c23697f7f1b7b775c5690a
7
- data.tar.gz: f7ef8c758a5d14292a4951c64bcea598b33babadd1217f8dfe084b2b4e548d758bfa0acb4d6e2fdf42cc7554eff20ade0b4d49e2d18dea388c1dfeebf21f69eb
6
+ metadata.gz: 3d45eb416985fd4e35664d5b3091afd4a31099b70782da32fc439d4f632df21adebed6f9b3c1c38ad8effe568f5d428c86d773d711759a4f7d70ee1eebd4c780
7
+ data.tar.gz: 6b4137542c874c92910aaeca66e04e2c251b42906c6632c117d0c1a2f9637de5d154d1b40c7812df87c2a2c55316af25a0878e8a2f48ccf31bba14de740d1314
@@ -223,25 +223,17 @@ And /^Completo los campos de factura fiscal$/ do
223
223
  option = ["FINAL","INSCR","EXENT","MONOTRIBUTO"][rand(3)]
224
224
  BROWSER.fieldset(:id,'invoice').should visible("formulario de factura")
225
225
  container.select_list(:id,'invoice-fiscal-status').select_value(option)
226
- if option=="FINAL"
227
- container.text_field(:id,'invoice-fiscal-id').focus
228
- #container.text_field(:id,'invoice-fiscal-id').value.should equal("20-32456734-9") unless BROWSER.li(:id,'cac-installment').present?
229
- container.text_field(:id,'invoice-fiscal-id').set("20324567349")
230
- container.text_field(:id,'invoice-address').set("corrientes 123")
231
- else
232
- #lleno los campos requeridos
233
- container.text_field(:id,'invoice-fiscal-id').set("30643063936")
234
- container.text_field(:id,'invoice-card-holder-name').set("diego qa romero")
235
- container.select_list(:id,'invoice-state').select_value("C")
236
- container.text_field(:id,'invoice-city-custom').set("buenos aires")
237
- sleep(1)
238
- BROWSER.send_keys :enter
239
- container.text_field(:id,'invoice-street').set("corrientes")
240
- container.text_field(:id,'invoice-postal-code').set("7111")
241
- container.text_field(:id,'invoice-address-number').set("123")
242
- container.text_field(:id,'invoice-address-floor').set("1")
243
- container.text_field(:id,'invoice-address-deparment').set("1")
244
- end
226
+ container.text_field(:id,'invoice-fiscal-id').set("30643063936")
227
+ container.text_field(:id,'invoice-card-holder-name').set("diego qa romero") if container.text_field(:id,'invoice-card-holder-name').present?
228
+ container.select_list(:id,'invoice-state').select_value("C")
229
+ container.text_field(:id,'invoice-city-custom').set("buenos aires")
230
+ sleep(1)
231
+ BROWSER.send_keys :enter
232
+ container.text_field(:id,'invoice-street').set("corrientes")
233
+ container.text_field(:id,'invoice-postal-code').set("7111")
234
+ container.text_field(:id,'invoice-address-number').set("123")
235
+ container.text_field(:id,'invoice-address-floor').set("1")
236
+ container.text_field(:id,'invoice-address-deparment').set("1")
245
237
  else
246
238
  container.checkbox(:id,'invoice-check').set(true) if container.checkbox(:id,'invoice-check').present?
247
239
  container.text_field(:id,'invoice-fiscal-id').set("3334445556")
@@ -68,6 +68,15 @@ And /^Paso a resultados$/ do
68
68
  BROWSER.link(:class,'ctn-searchbutton').click
69
69
  end
70
70
 
71
+ And /^Paso a landing$/ do
72
+ BROWSER.link(:class,'ctn-searchbutton').click
73
+ end
74
+
75
+ Then /^Verifico que el aeropuerto elegido sea el buscado en landing$/ do
76
+ airports = {"GIG"=>"RIO","SDU"=>"RIO","JDF"=>"JDF","IZA"=>"JDF","CFB"=>"CFB","CAW"=>"CAW","MEA"=>"MEA","CUN"=>"CUN","CZM"=>"CZM"}
77
+ BROWSER.url.downcase.should match("#{airports[@iata].downcase}")
78
+ end
79
+
71
80
  Then /^Verifico que el aeropuerto elegido sea el buscado$/ do
72
- BROWSER.url.should match("#{@iata}")
73
- end
81
+ BROWSER.url.should match("#{@iata}")
82
+ end
@@ -68,6 +68,16 @@ When /^Ingreso a la pagina de resultados en "(.*)" para una busqueda "(.*)" que
68
68
  set_cookies(BROWSER)
69
69
  end
70
70
 
71
+ Cuando(/^Ingreso a la pagina de landing en "(.*?)" para una busqueda "(.*?)" que desambigue por "(.*?)"$/) do |site, type, city|
72
+ pending("No se inicializo el navegador") if @@error_navegador
73
+ set_site(site)
74
+ @search = Class.const_get("MockSearch#{type.capitalize}").new(site,$ENV,"true")
75
+ puts @search.generate_url_landing_disambiguation_airports(city)
76
+ BROWSER.goto(@search.generate_url_landing_disambiguation_airports(city))
77
+ set_language(site)
78
+ set_cookies(BROWSER)
79
+ end
80
+
71
81
  When /^Ingreso a la pagina de resultados en "(.*)" para una busqueda "(.*)" del tipo "(.*)" sin gui$/ do |site,type,cabotage|
72
82
  pending("No se inicializo el navegador") if @@error_navegador
73
83
  set_site(site)
@@ -36,13 +36,13 @@ Característica: checkout.low_cost
36
36
  @br
37
37
  Ejemplos:
38
38
  |pais|tipo|cabotage|prov|from|to|
39
- |BR|roundtrip|true|GOL|SAO|RIO|
40
- |BR|oneway|true|GOL|SAO|RIO|
41
- |BR|roundtrip|true|GOL|REC|POA|
42
- |BR|oneway|true|GOL|SAO|RIO|
39
+ |BR|roundtrip|true|PSR|SAO|RIO|
40
+ |BR|oneway|true|PSR|SAO|RIO|
41
+ |BR|roundtrip|true|OC6|REC|POA|
42
+ |BR|oneway|true|OC6|SAO|RIO|
43
43
  |BR|roundtrip|true|GOL|SAO|RIO|
44
44
  |BR|oneway|true|GOL|SAO|RIO|
45
- |BR|roundtrip|true|GOL|SAO|RIO|
46
- |BR|oneway|true|GOL|SAO|RIO|
47
- |BR|roundtrip|true|GOL|SAO|RIO|
48
- |BR|oneway|true|GOL|SAO|RIO|
45
+ |BR|roundtrip|true|TAM|SAO|RIO|
46
+ |BR|oneway|true|TAM|SAO|RIO|
47
+ |BR|roundtrip|true|AZD|SAO|RIO|
48
+ |BR|oneway|true|AZD|SAO|RIO|
@@ -0,0 +1,88 @@
1
+ #language: es
2
+ @disambiguation
3
+ Característica: disambiguation.airports_landing
4
+ Se verifica el correcto funcionamiento de la pagina de desambiguacion para aeropuertos
5
+
6
+ @airports_landing
7
+ Esquema del escenario: Ingresar a la pagina de landing, buscar una ciudad que desambigue y validar la pagina de desambiguacion para landing
8
+ Cuando Ingreso a la pagina de landing en "<pais>" para una busqueda "<tipo>" que desambigue por "<ciudad>"
9
+ Cuando Espero que termine de cargar la pagina de desambiguacion
10
+ Entonces Verifico que ingrese a la pagina de desambiguacion
11
+ Entonces Verifico que se muestre el mapa
12
+ Y Verifico que el combo de distancia este correcto
13
+ Y Verifico cada opcion de aeropuerto "<tipo>" en "<ciudad>"
14
+ Y Paso a landing
15
+ Cuando Espero que termine de cargar
16
+ Entonces Verifico que el aeropuerto elegido sea el buscado en landing
17
+
18
+ @ar
19
+ Ejemplos:
20
+ |pais|tipo|ciudad|
21
+ |AR |roundtrip|BZC|
22
+ |AR |oneway|PCM|
23
+ |AR |multipledestinations|BZC|
24
+ @br
25
+ Ejemplos:
26
+ |pais|tipo|ciudad|
27
+ |BR |roundtrip|BZC|
28
+ |BR |oneway|PCM|
29
+ @co
30
+ Ejemplos:
31
+ |pais|tipo|ciudad|
32
+ |CO |roundtrip|BZC|
33
+ |CO |oneway|PCM|
34
+ |CO |multipledestinations|BZC|
35
+ @cl
36
+ Ejemplos:
37
+ |pais|tipo|ciudad|
38
+ |CL |roundtrip|BZC|
39
+ |CL |oneway|PCM|
40
+ |CL |multipledestinations|BZC|
41
+ @cr
42
+ Ejemplos:
43
+ |pais|tipo|ciudad|
44
+ |CR |roundtrip|BZC|
45
+ |CR |oneway|PCM|
46
+ |CR |multipledestinations|BZC|
47
+ @ec
48
+ Ejemplos:
49
+ |pais|tipo|ciudad|
50
+ |EC |roundtrip|BZC|
51
+ |EC |oneway|PCM|
52
+ |EC |multipledestinations|BZC|
53
+ @mx
54
+ Ejemplos:
55
+ |pais|tipo|ciudad|
56
+ |MX |roundtrip|BZC|
57
+ |MX |oneway|PCM|
58
+ |MX |multipledestinations|BZC|
59
+ @pa
60
+ Ejemplos:
61
+ |pais|tipo|ciudad|
62
+ |PA |roundtrip|BZC|
63
+ |PA |oneway|PCM|
64
+ |PA |multipledestinations|BZC|
65
+ @pe
66
+ Ejemplos:
67
+ |pais|tipo|ciudad|
68
+ |PE |roundtrip|BZC|
69
+ |PE |oneway|PCM|
70
+ |PE |multipledestinations|BZC|
71
+ @us
72
+ Ejemplos:
73
+ |pais|tipo|ciudad|
74
+ |US |roundtrip|BZC|
75
+ |US |oneway|PCM|
76
+ |US |multipledestinations|BZC|
77
+ @uy
78
+ Ejemplos:
79
+ |pais|tipo|ciudad|
80
+ |UY |roundtrip|BZC|
81
+ |UY |oneway|PCM|
82
+ |UY |multipledestinations|BZC|
83
+ @ve
84
+ Ejemplos:
85
+ |pais|tipo|ciudad|
86
+ |VE |roundtrip|BZC|
87
+ |VE |oneway|PCM|
88
+ |VE |multipledestinations|BZC|
@@ -14,7 +14,7 @@
14
14
  gem.name = "flights_gui_henry_tests" #Debe ser unico en el Gem Server, tratemos de utilizar nombre que identifiquen de forma inequivoca
15
15
 
16
16
  gem.require_paths = ["lib"] #Usualmente es solo lib -> ["lib"]5
17
- gem.version = '3.0.4' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
17
+ gem.version = '3.0.5' #La version se debe incrementar cada vez que se desea publicar una nueva version del test.
18
18
 
19
19
  gem.add_dependency('henry-container', '>= 0.1.82')
20
20
  gem.add_dependency('watir-webdriver')
@@ -10000,6 +10000,200 @@ tasks:
10000
10000
  recipients:
10001
10001
  - estebanldh@gmail.com
10002
10002
  - nsimean@despegar.com
10003
+ - name: disambiguation.airports_landing
10004
+ class_name: Henry::Task::CucumberTask
10005
+ options:
10006
+ tags:
10007
+ - disambiguation
10008
+ - airports_landing
10009
+ expand: true
10010
+ no-source: true
10011
+ reports:
10012
+ - format: html
10013
+ name: ${DATE}_${TASK_NAME}.html
10014
+ recipients:
10015
+ - estebanldh@gmail.com
10016
+ - nsimean@despegar.com
10017
+ - name: disambiguation.airports_landing.ar
10018
+ class_name: Henry::Task::CucumberTask
10019
+ options:
10020
+ tags:
10021
+ - disambiguation
10022
+ - airports_landing
10023
+ - ar
10024
+ expand: true
10025
+ no-source: true
10026
+ reports:
10027
+ - format: html
10028
+ name: ${DATE}_${TASK_NAME}.html
10029
+ recipients:
10030
+ - estebanldh@gmail.com
10031
+ - nsimean@despegar.com
10032
+ - name: disambiguation.airports_landing.br
10033
+ class_name: Henry::Task::CucumberTask
10034
+ options:
10035
+ tags:
10036
+ - disambiguation
10037
+ - airports_landing
10038
+ - br
10039
+ expand: true
10040
+ no-source: true
10041
+ reports:
10042
+ - format: html
10043
+ name: ${DATE}_${TASK_NAME}.html
10044
+ recipients:
10045
+ - estebanldh@gmail.com
10046
+ - nsimean@despegar.com
10047
+ - name: disambiguation.airports_landing.co
10048
+ class_name: Henry::Task::CucumberTask
10049
+ options:
10050
+ tags:
10051
+ - disambiguation
10052
+ - airports_landing
10053
+ - co
10054
+ expand: true
10055
+ no-source: true
10056
+ reports:
10057
+ - format: html
10058
+ name: ${DATE}_${TASK_NAME}.html
10059
+ recipients:
10060
+ - estebanldh@gmail.com
10061
+ - nsimean@despegar.com
10062
+ - name: disambiguation.airports_landing.cl
10063
+ class_name: Henry::Task::CucumberTask
10064
+ options:
10065
+ tags:
10066
+ - disambiguation
10067
+ - airports_landing
10068
+ - cl
10069
+ expand: true
10070
+ no-source: true
10071
+ reports:
10072
+ - format: html
10073
+ name: ${DATE}_${TASK_NAME}.html
10074
+ recipients:
10075
+ - estebanldh@gmail.com
10076
+ - nsimean@despegar.com
10077
+ - name: disambiguation.airports_landing.cr
10078
+ class_name: Henry::Task::CucumberTask
10079
+ options:
10080
+ tags:
10081
+ - disambiguation
10082
+ - airports_landing
10083
+ - cr
10084
+ expand: true
10085
+ no-source: true
10086
+ reports:
10087
+ - format: html
10088
+ name: ${DATE}_${TASK_NAME}.html
10089
+ recipients:
10090
+ - estebanldh@gmail.com
10091
+ - nsimean@despegar.com
10092
+ - name: disambiguation.airports_landing.ec
10093
+ class_name: Henry::Task::CucumberTask
10094
+ options:
10095
+ tags:
10096
+ - disambiguation
10097
+ - airports_landing
10098
+ - ec
10099
+ expand: true
10100
+ no-source: true
10101
+ reports:
10102
+ - format: html
10103
+ name: ${DATE}_${TASK_NAME}.html
10104
+ recipients:
10105
+ - estebanldh@gmail.com
10106
+ - nsimean@despegar.com
10107
+ - name: disambiguation.airports_landing.mx
10108
+ class_name: Henry::Task::CucumberTask
10109
+ options:
10110
+ tags:
10111
+ - disambiguation
10112
+ - airports_landing
10113
+ - mx
10114
+ expand: true
10115
+ no-source: true
10116
+ reports:
10117
+ - format: html
10118
+ name: ${DATE}_${TASK_NAME}.html
10119
+ recipients:
10120
+ - estebanldh@gmail.com
10121
+ - nsimean@despegar.com
10122
+ - name: disambiguation.airports_landing.pa
10123
+ class_name: Henry::Task::CucumberTask
10124
+ options:
10125
+ tags:
10126
+ - disambiguation
10127
+ - airports_landing
10128
+ - pa
10129
+ expand: true
10130
+ no-source: true
10131
+ reports:
10132
+ - format: html
10133
+ name: ${DATE}_${TASK_NAME}.html
10134
+ recipients:
10135
+ - estebanldh@gmail.com
10136
+ - nsimean@despegar.com
10137
+ - name: disambiguation.airports_landing.pe
10138
+ class_name: Henry::Task::CucumberTask
10139
+ options:
10140
+ tags:
10141
+ - disambiguation
10142
+ - airports_landing
10143
+ - pe
10144
+ expand: true
10145
+ no-source: true
10146
+ reports:
10147
+ - format: html
10148
+ name: ${DATE}_${TASK_NAME}.html
10149
+ recipients:
10150
+ - estebanldh@gmail.com
10151
+ - nsimean@despegar.com
10152
+ - name: disambiguation.airports_landing.us
10153
+ class_name: Henry::Task::CucumberTask
10154
+ options:
10155
+ tags:
10156
+ - disambiguation
10157
+ - airports_landing
10158
+ - us
10159
+ expand: true
10160
+ no-source: true
10161
+ reports:
10162
+ - format: html
10163
+ name: ${DATE}_${TASK_NAME}.html
10164
+ recipients:
10165
+ - estebanldh@gmail.com
10166
+ - nsimean@despegar.com
10167
+ - name: disambiguation.airports_landing.uy
10168
+ class_name: Henry::Task::CucumberTask
10169
+ options:
10170
+ tags:
10171
+ - disambiguation
10172
+ - airports_landing
10173
+ - uy
10174
+ expand: true
10175
+ no-source: true
10176
+ reports:
10177
+ - format: html
10178
+ name: ${DATE}_${TASK_NAME}.html
10179
+ recipients:
10180
+ - estebanldh@gmail.com
10181
+ - nsimean@despegar.com
10182
+ - name: disambiguation.airports_landing.ve
10183
+ class_name: Henry::Task::CucumberTask
10184
+ options:
10185
+ tags:
10186
+ - disambiguation
10187
+ - airports_landing
10188
+ - ve
10189
+ expand: true
10190
+ no-source: true
10191
+ reports:
10192
+ - format: html
10193
+ name: ${DATE}_${TASK_NAME}.html
10194
+ recipients:
10195
+ - estebanldh@gmail.com
10196
+ - nsimean@despegar.com
10003
10197
  - name: queryStringParameters
10004
10198
  class_name: Henry::Task::CucumberTask
10005
10199
  options:
@@ -10990,6 +11184,35 @@ tasks:
10990
11184
  recipients:
10991
11185
  - estebanldh@gmail.com
10992
11186
  - nsimean@despegar.com
11187
+ - name: checkout.chat
11188
+ class_name: Henry::Task::CucumberTask
11189
+ options:
11190
+ tags:
11191
+ - checkout
11192
+ - chat
11193
+ expand: true
11194
+ no-source: true
11195
+ reports:
11196
+ - format: html
11197
+ name: ${DATE}_${TASK_NAME}.html
11198
+ recipients:
11199
+ - estebanldh@gmail.com
11200
+ - nsimean@despegar.com
11201
+ - name: checkout.chat.ar
11202
+ class_name: Henry::Task::CucumberTask
11203
+ options:
11204
+ tags:
11205
+ - checkout
11206
+ - chat
11207
+ - ar
11208
+ expand: true
11209
+ no-source: true
11210
+ reports:
11211
+ - format: html
11212
+ name: ${DATE}_${TASK_NAME}.html
11213
+ recipients:
11214
+ - estebanldh@gmail.com
11215
+ - nsimean@despegar.com
10993
11216
  - name: others.flights_tracker
10994
11217
  class_name: Henry::Task::CucumberTask
10995
11218
  options:
@@ -14937,69 +15160,6 @@ tasks:
14937
15160
  recipients:
14938
15161
  - estebanldh@gmail.com
14939
15162
  - nsimean@despegar.com
14940
- - name: checkout.fast_checkout.mx
14941
- class_name: Henry::Task::CucumberTask
14942
- options:
14943
- tags:
14944
- - checkout
14945
- - fast_checkout
14946
- - mx
14947
- expand: true
14948
- no-source: true
14949
- reports:
14950
- - format: html
14951
- name: ${DATE}_${TASK_NAME}.html
14952
- recipients:
14953
- - estebanldh@gmail.com
14954
- - nsimean@despegar.com
14955
- - name: checkout.fast_checkout.mx.roundtrip
14956
- class_name: Henry::Task::CucumberTask
14957
- options:
14958
- tags:
14959
- - checkout
14960
- - fast_checkout
14961
- - mx
14962
- - roundtrip
14963
- expand: true
14964
- no-source: true
14965
- reports:
14966
- - format: html
14967
- name: ${DATE}_${TASK_NAME}.html
14968
- recipients:
14969
- - estebanldh@gmail.com
14970
- - nsimean@despegar.com
14971
- - name: checkout.fast_checkout.mx.oneway
14972
- class_name: Henry::Task::CucumberTask
14973
- options:
14974
- tags:
14975
- - checkout
14976
- - fast_checkout
14977
- - mx
14978
- - oneway
14979
- expand: true
14980
- no-source: true
14981
- reports:
14982
- - format: html
14983
- name: ${DATE}_${TASK_NAME}.html
14984
- recipients:
14985
- - estebanldh@gmail.com
14986
- - nsimean@despegar.com
14987
- - name: checkout.fast_checkout.mx.multipledestinations
14988
- class_name: Henry::Task::CucumberTask
14989
- options:
14990
- tags:
14991
- - checkout
14992
- - fast_checkout
14993
- - mx
14994
- - multipledestinations
14995
- expand: true
14996
- no-source: true
14997
- reports:
14998
- - format: html
14999
- name: ${DATE}_${TASK_NAME}.html
15000
- recipients:
15001
- - estebanldh@gmail.com
15002
- - nsimean@despegar.com
15003
15163
  - name: checkout.fast_checkout.us
15004
15164
  class_name: Henry::Task::CucumberTask
15005
15165
  options:
@@ -16611,12 +16771,12 @@ tasks:
16611
16771
  recipients:
16612
16772
  - estebanldh@gmail.com
16613
16773
  - nsimean@despegar.com
16614
- - name: checkout.chat
16774
+ - name: checkout.providers
16615
16775
  class_name: Henry::Task::CucumberTask
16616
16776
  options:
16617
16777
  tags:
16618
16778
  - checkout
16619
- - chat
16779
+ - providers
16620
16780
  expand: true
16621
16781
  no-source: true
16622
16782
  reports:
@@ -16625,12 +16785,42 @@ tasks:
16625
16785
  recipients:
16626
16786
  - estebanldh@gmail.com
16627
16787
  - nsimean@despegar.com
16628
- - name: checkout.chat.ar
16788
+ - name: checkout.providers.us
16629
16789
  class_name: Henry::Task::CucumberTask
16630
16790
  options:
16631
16791
  tags:
16632
16792
  - checkout
16633
- - chat
16793
+ - providers
16794
+ - us
16795
+ expand: true
16796
+ no-source: true
16797
+ reports:
16798
+ - format: html
16799
+ name: ${DATE}_${TASK_NAME}.html
16800
+ recipients:
16801
+ - estebanldh@gmail.com
16802
+ - nsimean@despegar.com
16803
+ - name: checkout.providers.mx
16804
+ class_name: Henry::Task::CucumberTask
16805
+ options:
16806
+ tags:
16807
+ - checkout
16808
+ - providers
16809
+ - mx
16810
+ expand: true
16811
+ no-source: true
16812
+ reports:
16813
+ - format: html
16814
+ name: ${DATE}_${TASK_NAME}.html
16815
+ recipients:
16816
+ - estebanldh@gmail.com
16817
+ - nsimean@despegar.com
16818
+ - name: checkout.providers.ar
16819
+ class_name: Henry::Task::CucumberTask
16820
+ options:
16821
+ tags:
16822
+ - checkout
16823
+ - providers
16634
16824
  - ar
16635
16825
  expand: true
16636
16826
  no-source: true
@@ -16640,12 +16830,13 @@ tasks:
16640
16830
  recipients:
16641
16831
  - estebanldh@gmail.com
16642
16832
  - nsimean@despegar.com
16643
- - name: checkout.providers
16833
+ - name: checkout.providers.pe
16644
16834
  class_name: Henry::Task::CucumberTask
16645
16835
  options:
16646
16836
  tags:
16647
16837
  - checkout
16648
16838
  - providers
16839
+ - pe
16649
16840
  expand: true
16650
16841
  no-source: true
16651
16842
  reports:
@@ -16654,13 +16845,13 @@ tasks:
16654
16845
  recipients:
16655
16846
  - estebanldh@gmail.com
16656
16847
  - nsimean@despegar.com
16657
- - name: checkout.providers.mx
16848
+ - name: checkout.providers.co
16658
16849
  class_name: Henry::Task::CucumberTask
16659
16850
  options:
16660
16851
  tags:
16661
16852
  - checkout
16662
16853
  - providers
16663
- - mx
16854
+ - co
16664
16855
  expand: true
16665
16856
  no-source: true
16666
16857
  reports:
@@ -17004,11 +17195,11 @@ tasks:
17004
17195
  recipients:
17005
17196
  - estebanldh@gmail.com
17006
17197
  - nsimean@despegar.com
17007
- - name: matrix
17198
+ - name: checkout
17008
17199
  class_name: Henry::Task::CucumberTask
17009
17200
  options:
17010
17201
  tags:
17011
- - matrix
17202
+ - checkout
17012
17203
  expand: true
17013
17204
  no-source: true
17014
17205
  reports:
@@ -17017,11 +17208,11 @@ tasks:
17017
17208
  recipients:
17018
17209
  - estebanldh@gmail.com
17019
17210
  - nsimean@despegar.com
17020
- - name: advanced_search
17211
+ - name: matrix
17021
17212
  class_name: Henry::Task::CucumberTask
17022
17213
  options:
17023
17214
  tags:
17024
- - advanced_search
17215
+ - matrix
17025
17216
  expand: true
17026
17217
  no-source: true
17027
17218
  reports:
@@ -17030,11 +17221,11 @@ tasks:
17030
17221
  recipients:
17031
17222
  - estebanldh@gmail.com
17032
17223
  - nsimean@despegar.com
17033
- - name: book
17224
+ - name: advanced_search
17034
17225
  class_name: Henry::Task::CucumberTask
17035
17226
  options:
17036
17227
  tags:
17037
- - book
17228
+ - advanced_search
17038
17229
  expand: true
17039
17230
  no-source: true
17040
17231
  reports:
@@ -17043,11 +17234,11 @@ tasks:
17043
17234
  recipients:
17044
17235
  - estebanldh@gmail.com
17045
17236
  - nsimean@despegar.com
17046
- - name: checkout
17237
+ - name: book
17047
17238
  class_name: Henry::Task::CucumberTask
17048
17239
  options:
17049
17240
  tags:
17050
- - checkout
17241
+ - book
17051
17242
  expand: true
17052
17243
  no-source: true
17053
17244
  reports:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flights_gui_henry_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - lgonzalez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-29 00:00:00.000000000 Z
11
+ date: 2014-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: henry-container
@@ -280,6 +280,7 @@ files:
280
280
  - features/tests/contents/rules.feature
281
281
  - features/tests/contents/webcheckin.feature
282
282
  - features/tests/desambiguation/airports.feature
283
+ - features/tests/desambiguation/airports_landing.feature
283
284
  - features/tests/desambiguation/city.feature
284
285
  - features/tests/filters/filters.feature
285
286
  - features/tests/fixes/advancedgui.feature