flights_gui_tests 1.7.0 → 1.7.1

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: f0a84567e3295e3132504984a89f2c1cb9ce54a8
4
- data.tar.gz: 73c31fef8b8b72e0689059ba6d714dcb0b70a450
3
+ metadata.gz: 1d63a88350096666380eaa1574818688fc63babe
4
+ data.tar.gz: 8750cc0298218f5917c65a9ffbf04e9136af8359
5
5
  SHA512:
6
- metadata.gz: 805707ec902a0652cead794ea9b31039a03a0ef57401eb2cf32089322160cc88aa9ceb533eea2af66894f8e2dd8fba5227034e05066522b10c173a5efb628006
7
- data.tar.gz: 0745e620ef6d12673175ff966921ebb42c81b6ffca1193b51be97ab8eaf84f03ad9d11f156b3066d34d7bcae04b066ecf5c8993a914a1b1aed645f38904e424c
6
+ metadata.gz: 735898e209462dad735d752539b619b92af0ca0e142d0a328e4fda2a1185ca10524550199f005374b424395b5b130d74cc8f57b56bdcc6d8fecb376265d2cd1d
7
+ data.tar.gz: c398fcb46573bb91c73290c01863532b303d02167aca98beab75e95d0340dca6b1b16048ada9e5227b72ea43e7ee87eed70a662f409259a0e98cca770d9b401a
@@ -5,6 +5,10 @@ end
5
5
  Y(/^cargo los datos de la tarjeta$/) do
6
6
  @page.cargar_datos_tarjeta
7
7
  end
8
+ Y(/^cargo los datos de la tarjeta de debito$/) do
9
+ @page.cargar_datos_tarjeta
10
+ @page.radios_opciones_pago_elements[0].set
11
+ end
8
12
  Y(/^cargo los datos de la tarjeta en el nuevo formulario$/) do
9
13
  @page.cargar_datos_tarjeta_nuevo_formulario
10
14
  end
@@ -28,16 +28,18 @@ Y(/^(?:verifico|valido) que se muestren la caja de clientes felices$/) do
28
28
  happy_clients.div(:class,'ux-common-comment-description').should visible
29
29
  happy_clients.div(:class,'ux-common-comment-description').span(:class,'flights-comment-description').should visible
30
30
  happy_clients.div(:class,'ux-common-comment-description').span(:class,'flights-comment-description').text.no_accents.should match('[A-Z]|[a-z]')
31
- #happy_clients.div(:class,'ux-common-comment-profile').span(:class,'ux-common-comment-name').should visible
32
- #happy_clients.div(:class,'ux-common-comment-profile').span(:class,'ux-common-comment-name').text.no_accents.should match('[A-Z]|[a-z]')
33
31
  happy_clients.span(:class,'description').should visible
34
32
  happy_clients.span(:class,'description').text.no_accents.should match('Por que \d+ millones de viajeros nos eligen|Why \d+ million travelers choose us|Por que \d+ milhoes de viajantes nos escolhem')
35
33
  end
36
34
  end
37
35
 
38
36
  Cuando(/^(?:verifico|valido) que los precios de las cuotas se muestran correctamente$/) do
39
- @page.cerrar_popup_cantidad_visitantes_element.click if @page.cerrar_popup_cantidad_visitantes_element.present?
40
- @page.cerrar_popup_chat_element.click if @page.popup_chat_element.present?
37
+ begin
38
+ @page.cerrar_popup_cantidad_visitantes_element.click if @page.cerrar_popup_cantidad_visitantes_element.present?
39
+ @page.cerrar_popup_chat_element.click if @page.popup_chat_element.present?
40
+ rescue Selenium::WebDriver::Error::ElementNotVisibleError
41
+ puts "no se ve el elemento"
42
+ end
41
43
  @page.verificar_tipos_de_pago
42
44
  end
43
45
 
@@ -43,11 +43,11 @@ Cuando(/^elijo un itinerario en landing$/) do
43
43
  end
44
44
 
45
45
  Y(/^ingreso checkout$/) do
46
- @page_in.should equal("checkout")
46
+ @page.product.should equal("checkout")
47
47
  end
48
48
 
49
49
  Y(/^ingreso resultados$/) do
50
- @page_in.should equal("results")
50
+ @page.product.should equal("results")
51
51
  end
52
52
 
53
53
  Entonces(/^(?:verifico|valido) que sea la pagina de resultados correcta$/) do
@@ -105,7 +105,5 @@ Entonces(/^(?:verifico|valido) que se muestre correctamente la review de pasajer
105
105
  pending("No se muestra la review de pasajeros") unless @page.reviews_pasajeros_element.present?
106
106
  @page.reviews_pasajeros_element.should visible
107
107
  @page.reviews_pasajeros_title_element.text.no_accents.should match("Puntuacion general de vuelos a #{@ciudad_elegida}|Pontuacao geral de voos #{@ciudad_elegida}|Overall rating for flights to #{@ciudad_elegida}")
108
- if $SITE != "US"
109
- @page.reviews_pasajeros_title_element.text.no_accents.should match("Ya compraron vuelos a #{@ciudad_elegida}|Ja compraram voos a #{@ciudad_elegida}|")
110
- end
108
+ @page.reviews_pasajeros_title_element.text.no_accents.should match("Ya compraron vuelos a #{@ciudad_elegida}|Ja compraram voos a #{@ciudad_elegida}|")
111
109
  end
@@ -41,10 +41,8 @@ Y(/^(?:verifico|valido) la pagina donde ingresa$/) do
41
41
  puts " URL: #{@page.url}"
42
42
  Watir::Wait.until(timeout = 300){@page_results.carga_element.present? or @page_results.itinerario_element.present? or @page_checkout.pasajeros_element.present? or @page_checkout.notificacion_warning_element.present?}
43
43
  if @page_checkout.pasajeros_element.present? or @page_checkout.notificacion_warning_element.present?
44
- @page_in = "checkout"
45
44
  @page = @page_checkout
46
45
  else
47
- @page_in = "results"
48
46
  @page = @page_results
49
47
  end
50
48
  sleep(1)
@@ -191,7 +191,8 @@ Entonces(/^(?:verifico|valido) que la primer pagina muestre correctamente los fi
191
191
  end
192
192
  (doc/"div#clusters div.cluster div.#{_class} ul.itineraries-group li.itinerary").each do |itineraries|
193
193
  hour = Time.parse((itineraries/"li.leave span.hour").inner_text.strip)
194
- (hour <= maxx and hour >= min).should be_true
194
+ hour.should es_menor_igual_que(maxx)
195
+ hour.should es_mayor_igual_que(min)
195
196
  end
196
197
  end
197
198
  end
@@ -227,8 +228,8 @@ Entonces(/^(?:verifico|valido) que la primer pagina muestre correctamente los fi
227
228
  unless (doc/"div#clusters").first.attributes['style'].match("none")
228
229
  (doc/"div#clusters div.cluster div.#{_class} ul.itineraries-group li.itinerary").each do |itineraries|
229
230
  time = @page.devolver_duracion((itineraries/"li.time span").inner_text)
230
- time.should es_mayor_igual_que(@from_time)
231
- time.should es_menor_igual_que(@to_time)
231
+ time.should es_mayor_igual_que(@from_time.to_i)
232
+ time.should es_menor_igual_que(@to_time.to_i)
232
233
  end
233
234
  end
234
235
  end
@@ -272,11 +273,11 @@ Entonces(/^(?:verifico|valido) que la primer pagina muestre correctamente los fi
272
273
  @page.cargar_itinerarios
273
274
  @page.datos_de_itinerarios.each do |itinerario|
274
275
  if AllPages.site.match("MX|UY|PE|BR|CR|PA")
275
- itinerario.tarifas['tarifa_adulto'].value.should es_mayor_igual_que(@price_down)
276
- itinerario.tarifas['tarifa_adulto'].value.should es_menor_igual_que(@price_up)
276
+ itinerario.tarifas['tarifa_adulto'].value.should es_mayor_igual_que(@price_down.to_i)
277
+ itinerario.tarifas['tarifa_adulto'].value.should es_menor_igual_que(@price_up.to_i)
277
278
  else
278
- itinerario.tarifas['total'].value.should es_mayor_igual_que(@price_down)
279
- itinerario.tarifas['total'].value.should es_menor_igual_que(@price_up)
279
+ itinerario.tarifas['total'].value.should es_mayor_igual_que(@price_down.to_i)
280
+ itinerario.tarifas['total'].value.should es_menor_igual_que(@price_up.to_i)
280
281
  end
281
282
  end
282
283
  end
@@ -195,11 +195,11 @@ Entonces(/^(?:verifico|valido) que la primer pagina muestre correctamente los fi
195
195
  @page.cargar_itinerarios
196
196
  @page.datos_de_itinerarios.each do |itinerario|
197
197
  if AllPages.site.match("MX|UY|PE|BR|CR|PA")
198
- itinerario.tarifas['tarifa_adulto'].value.should es_mayor_igual_que(@price_down)
199
- itinerario.tarifas['tarifa_adulto'].value.should es_menor_igual_que(@price_up)
198
+ itinerario.tarifas['tarifa_adulto'].value.should es_mayor_igual_que(@price_down.to_i)
199
+ itinerario.tarifas['tarifa_adulto'].value.should es_menor_igual_que(@price_up.to_i)
200
200
  else
201
- itinerario.tarifas['total'].value.should es_mayor_igual_que(@price_down)
202
- itinerario.tarifas['total'].value.should es_menor_igual_que(@price_up)
201
+ itinerario.tarifas['total'].value.should es_mayor_igual_que(@price_down.to_i)
202
+ itinerario.tarifas['total'].value.should es_menor_igual_que(@price_up.to_i)
203
203
  end
204
204
  end
205
205
  end
@@ -239,8 +239,8 @@ Entonces(/^(?:verifico|valido) que la primer pagina muestre correctamente los fi
239
239
  doc = Hpricot.parse(@page.html)
240
240
  (doc/"div#clusters div.cluster div.outbound ul.itineraries-group li.itinerary").each do |itineraries|
241
241
  time = @page.devolver_duracion((itineraries/"li.time span").inner_text)
242
- time.should es_mayor_igual_que(@from_time)
243
- time.should es_menor_igual_que(@to_time)
242
+ time.should es_mayor_igual_que(@from_time.to_i)
243
+ time.should es_menor_igual_que(@to_time.to_i)
244
244
  end
245
245
  end
246
246
 
@@ -269,8 +269,8 @@ Entonces(/^(?:verifico|valido) que la primer pagina muestre correctamente los fi
269
269
  doc = Hpricot.parse(@page.html)
270
270
  (doc/"div#clusters div.cluster div.inbound ul.itineraries-group li.itinerary").each do |itineraries|
271
271
  time = @page.devolver_duracion((itineraries/"li.time span").inner_text)
272
- time.should es_mayor_igual_que(@from_time)
273
- time.should es_menor_igual_que(@to_time)
272
+ time.should es_mayor_igual_que(@from_time.to_i)
273
+ time.should es_menor_igual_que(@to_time.to_i)
274
274
  end
275
275
  end
276
276
 
@@ -19,7 +19,7 @@ end
19
19
  Entonces(/^(?:verifico|valido) ordenamiento STOPSCOUNT_ASCENDING$/) do
20
20
  after = @page.datos_de_itinerarios.first
21
21
  @page.datos_de_itinerarios.each do |cluster|
22
- after.total_escalas.last.should_not es_mayor_que(cluster.total_escalas.last)
22
+ after.total_escalas.last.should_not es_mayor_que(cluster.total_escalas.last.to_i)
23
23
  after = cluster
24
24
  end
25
25
  end
@@ -27,7 +27,7 @@ end
27
27
  Entonces(/^(?:verifico|valido) ordenamiento TOTALFARE_ASCENDING$/) do
28
28
  after = @page.datos_de_itinerarios.first.tarifas['total']
29
29
  @page.datos_de_itinerarios.each do |cluster|
30
- after.value.should_not es_mayor_que(cluster.tarifas['total'].value)
30
+ after.value.should_not es_mayor_que(cluster.tarifas['total'].value.to_i)
31
31
  after = cluster.tarifas['total']
32
32
  end
33
33
  end
@@ -35,7 +35,7 @@ end
35
35
  Entonces(/^(?:verifico|valido) ordenamiento DURATION_ASCENDING$/) do
36
36
  after = @page.datos_de_itinerarios.first.duracion
37
37
  @page.datos_de_itinerarios.each do |cluster|
38
- after.should_not es_mayor_que(cluster.duracion)
38
+ after.should_not es_mayor_que(cluster.duracion.to_i)
39
39
  after = cluster.duracion
40
40
  end
41
41
  end
@@ -43,7 +43,7 @@ end
43
43
  Entonces(/^(?:verifico|valido) ordenamiento FARE_ASCENDING$/) do
44
44
  after = @page.datos_de_itinerarios.first.tarifas['tarifa_adulto']
45
45
  @page.datos_de_itinerarios.each do |cluster|
46
- after.value.should_not es_mayor_que(cluster.tarifas['tarifa_adulto'].value)
46
+ after.value.should_not es_mayor_que(cluster.tarifas['tarifa_adulto'].value.to_i)
47
47
  after = cluster.tarifas['tarifa_adulto']
48
48
  end
49
49
  end
@@ -51,7 +51,6 @@ Entonces(/^recorro y (?:verifico|valido) cada itinerario$/) do
51
51
  @page.validar_detalles_itinerario(i)
52
52
  @page.validar_popup_cuotas(i)
53
53
  @page.validar_vuelo_bussines(i)
54
- @page.validar_maletas(i)
55
54
  i += 1
56
55
  break if i == 2
57
56
  end
@@ -35,12 +35,12 @@ Entonces(/^verifico que se muestren las reviews de aerolineas$/) do
35
35
  sleep(1)
36
36
  begin
37
37
  aerolinea.click
38
- @page.popup_reviews_aerolineas_element.when_visible(timeout=10)
38
+ @page.popup_reviews_aerolineas_element.when_visible(timeout=2)
39
39
  doc = Hpricot.parse(@page.popup_reviews_aerolineas_element.html)
40
40
  @page.logo_aerolinea_en_matriz(index).should match((doc/"span.logo/img").first.attributes['src'].strip.downcase)
41
41
  aerolinea.text.strip.downcase.should equal((doc/"h4.name").inner_text.strip.downcase)
42
42
  @page.close_popup_reviews_aerolineas_element.click
43
- @page.popup_reviews_aerolineas_element.when_not_visible(timeout=10)
43
+ @page.popup_reviews_aerolineas_element.when_not_visible(timeout=2)
44
44
  rescue Selenium::WebDriver::Error::UnknownError
45
45
  puts "No se pudo hacer click en la review de aerolinea"
46
46
  rescue Watir::Wait::TimeoutError
@@ -97,7 +97,7 @@ end
97
97
 
98
98
  RSpec::Matchers.define :es_mayor_que do |min|
99
99
  match do |actual|
100
- actual.to_i > min
100
+ actual > min
101
101
  end
102
102
  failure_message_for_should do |actual|
103
103
  "se esperaba que el valor #{actual} sea mayor a #{min}"
@@ -109,7 +109,7 @@ end
109
109
 
110
110
  RSpec::Matchers.define :es_mayor_igual_que do |min|
111
111
  match do |actual|
112
- actual.to_i >= min
112
+ actual >= min
113
113
  end
114
114
  failure_message_for_should do |actual|
115
115
  "se esperaba que el valor #{actual} sea mayor igual a #{min}"
@@ -121,7 +121,7 @@ end
121
121
 
122
122
  RSpec::Matchers.define :es_menor_igual_que do |min|
123
123
  match do |actual|
124
- actual.to_i <= min
124
+ actual <= min
125
125
  end
126
126
  failure_message_for_should do |actual|
127
127
  "se esperaba que el valor #{actual} sea menor igual a #{min}"
@@ -73,5 +73,9 @@ module Checkout
73
73
  return (manage_data.date_from_1 - Date.today).to_i < 2
74
74
  end
75
75
 
76
+ def product
77
+ "checkout"
78
+ end
79
+
76
80
  end
77
81
  end
@@ -139,5 +139,9 @@ module Results
139
139
  @datos_de_itinerarios[index]
140
140
  end
141
141
 
142
+ def product
143
+ "results"
144
+ end
145
+
142
146
  end
143
147
  end
@@ -1,3 +1,3 @@
1
1
  module FlightsGui
2
- VERSION = "1.7.0"
2
+ VERSION = "1.7.1"
3
3
  end
@@ -0,0 +1,67 @@
1
+ #language: es
2
+ @checkout
3
+ Característica: checkout.debito
4
+ Se verifica la correcta carga y funcionamiento de la pagina de checkout, se cargan los datos correctos y se realiza la compra
5
+
6
+ @debito
7
+ Esquema del escenario: Se verifica que se pueda realizar una compra correctamente, validando que los valores a travez del flujo sean correctos y se mantengan a travez del mismo utilizando una compra con debito [REGRESION].
8
+ Dado como un usuario de '<pais>'
9
+ * ingreso una busqueda '<tipo>' del tipo '<cabotage>'
10
+ Cuando realizo la busqueda
11
+ Entonces verifico que la pagina no rompa
12
+ Cuando espero que termine de cargar la pagina de resultados
13
+ Entonces verifico que traiga resultados
14
+ Y cierro popups
15
+ Cuando elijo un itinerario y paso a checkout
16
+ Entonces verifico que la pagina no rompa
17
+ Y espero que termine de cargar la pagina de checkout
18
+ Y verifico que ingrese al checkout
19
+ Y valido los valores del desglose del checkout
20
+ Entonces cargo los pasajeros
21
+ Y cargo los datos de la tarjeta de debito
22
+ Y si el site es "AR|MX|PE|EC", cargo los datos de facturacion
23
+ Y cargo los datos de contacto
24
+ Y verifico que los datos cargados sean mostrados correctamente al lado del boton comprar
25
+ Cuando acepto y compro
26
+ Entonces espero que termine el pedido de compra
27
+ Y verifico si no trae errores
28
+ Entonces si aparece el popup de no disponibilidad, elijo un itinerario del popup de no disponibilidad
29
+ Entonces espero que termine de cargar la pagina de gracias
30
+ Y verifico que ingrese a la pagina de gracias
31
+ Y verifico el link de mi despegar
32
+ Y verifico el popup de asistencia al viajero
33
+ Y verifico los datos del vuelo comprado
34
+ Y verifico los valores del desglose en gracias contra los del checkout
35
+ Y verifico el tag de datalayer
36
+ Y verifico el pixel de Efrontier
37
+
38
+ @mx
39
+ @roundtrip
40
+ Ejemplos:
41
+ |pais|tipo|cabotage|
42
+ |MX |roundtrip|nil|
43
+ @mx
44
+ @oneway
45
+ Ejemplos:
46
+ |pais|tipo|cabotage|
47
+ |MX |oneway|nil|
48
+ @mx
49
+ @multipledestinations
50
+ Ejemplos:
51
+ |pais|tipo|cabotage|
52
+ |MX |multipledestinations|nil|
53
+ @pe
54
+ @roundtrip
55
+ Ejemplos:
56
+ |pais|tipo|cabotage|
57
+ |PE |roundtrip|nil|
58
+ @pe
59
+ @oneway
60
+ Ejemplos:
61
+ |pais|tipo|cabotage|
62
+ |PE |oneway|nil|
63
+ @pe
64
+ @multipledestinations
65
+ Ejemplos:
66
+ |pais|tipo|cabotage|
67
+ |PE |multipledestinations|nil|
data/henry-context.yml CHANGED
@@ -11409,6 +11409,146 @@ tasks:
11409
11409
  recipients:
11410
11410
  - estebanldh@gmail.com
11411
11411
  - nsimean@despegar.com
11412
+ - name: checkout.debito
11413
+ class_name: Henry::Task::CucumberTask
11414
+ options:
11415
+ tags:
11416
+ - checkout
11417
+ - debito
11418
+ expand: true
11419
+ no-source: true
11420
+ reports:
11421
+ - format: html
11422
+ name: ${DATE}_${TASK_NAME}.html
11423
+ recipients:
11424
+ - estebanldh@gmail.com
11425
+ - nsimean@despegar.com
11426
+ - name: checkout.debito.mx
11427
+ class_name: Henry::Task::CucumberTask
11428
+ options:
11429
+ tags:
11430
+ - checkout
11431
+ - debito
11432
+ - mx
11433
+ expand: true
11434
+ no-source: true
11435
+ reports:
11436
+ - format: html
11437
+ name: ${DATE}_${TASK_NAME}.html
11438
+ recipients:
11439
+ - estebanldh@gmail.com
11440
+ - nsimean@despegar.com
11441
+ - name: checkout.debito.mx.roundtrip
11442
+ class_name: Henry::Task::CucumberTask
11443
+ options:
11444
+ tags:
11445
+ - checkout
11446
+ - debito
11447
+ - mx
11448
+ - roundtrip
11449
+ expand: true
11450
+ no-source: true
11451
+ reports:
11452
+ - format: html
11453
+ name: ${DATE}_${TASK_NAME}.html
11454
+ recipients:
11455
+ - estebanldh@gmail.com
11456
+ - nsimean@despegar.com
11457
+ - name: checkout.debito.mx.oneway
11458
+ class_name: Henry::Task::CucumberTask
11459
+ options:
11460
+ tags:
11461
+ - checkout
11462
+ - debito
11463
+ - mx
11464
+ - oneway
11465
+ expand: true
11466
+ no-source: true
11467
+ reports:
11468
+ - format: html
11469
+ name: ${DATE}_${TASK_NAME}.html
11470
+ recipients:
11471
+ - estebanldh@gmail.com
11472
+ - nsimean@despegar.com
11473
+ - name: checkout.debito.mx.multipledestinations
11474
+ class_name: Henry::Task::CucumberTask
11475
+ options:
11476
+ tags:
11477
+ - checkout
11478
+ - debito
11479
+ - mx
11480
+ - multipledestinations
11481
+ expand: true
11482
+ no-source: true
11483
+ reports:
11484
+ - format: html
11485
+ name: ${DATE}_${TASK_NAME}.html
11486
+ recipients:
11487
+ - estebanldh@gmail.com
11488
+ - nsimean@despegar.com
11489
+ - name: checkout.debito.pe
11490
+ class_name: Henry::Task::CucumberTask
11491
+ options:
11492
+ tags:
11493
+ - checkout
11494
+ - debito
11495
+ - pe
11496
+ expand: true
11497
+ no-source: true
11498
+ reports:
11499
+ - format: html
11500
+ name: ${DATE}_${TASK_NAME}.html
11501
+ recipients:
11502
+ - estebanldh@gmail.com
11503
+ - nsimean@despegar.com
11504
+ - name: checkout.debito.pe.roundtrip
11505
+ class_name: Henry::Task::CucumberTask
11506
+ options:
11507
+ tags:
11508
+ - checkout
11509
+ - debito
11510
+ - pe
11511
+ - roundtrip
11512
+ expand: true
11513
+ no-source: true
11514
+ reports:
11515
+ - format: html
11516
+ name: ${DATE}_${TASK_NAME}.html
11517
+ recipients:
11518
+ - estebanldh@gmail.com
11519
+ - nsimean@despegar.com
11520
+ - name: checkout.debito.pe.oneway
11521
+ class_name: Henry::Task::CucumberTask
11522
+ options:
11523
+ tags:
11524
+ - checkout
11525
+ - debito
11526
+ - pe
11527
+ - oneway
11528
+ expand: true
11529
+ no-source: true
11530
+ reports:
11531
+ - format: html
11532
+ name: ${DATE}_${TASK_NAME}.html
11533
+ recipients:
11534
+ - estebanldh@gmail.com
11535
+ - nsimean@despegar.com
11536
+ - name: checkout.debito.pe.multipledestinations
11537
+ class_name: Henry::Task::CucumberTask
11538
+ options:
11539
+ tags:
11540
+ - checkout
11541
+ - debito
11542
+ - pe
11543
+ - multipledestinations
11544
+ expand: true
11545
+ no-source: true
11546
+ reports:
11547
+ - format: html
11548
+ name: ${DATE}_${TASK_NAME}.html
11549
+ recipients:
11550
+ - estebanldh@gmail.com
11551
+ - nsimean@despegar.com
11412
11552
  - name: checkout.online_payment
11413
11553
  class_name: Henry::Task::CucumberTask
11414
11554
  options:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flights_gui_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - lgonzalez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-20 00:00:00.000000000 Z
11
+ date: 2015-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: henry-container
@@ -353,6 +353,7 @@ files:
353
353
  - features/tests/checkout/compatibility.feature
354
354
  - features/tests/checkout/compras_duplicadas.feature
355
355
  - features/tests/checkout/cupones.feature
356
+ - features/tests/checkout/debito.feature
356
357
  - features/tests/checkout/error_messages.feature
357
358
  - features/tests/checkout/fast_checkout.feature
358
359
  - features/tests/checkout/ingresos_brutos.feature