flights_gui_tests 2.0.8 → 2.0.9

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: 7245a5792f2ac83c55327db5aca8d46e2f0a6198
4
- data.tar.gz: ce970750de2543f1e4cfd288dbc47a6c58eda4d7
3
+ metadata.gz: f15a1b9f9f5bcf39f6de568bed10906277d1ca20
4
+ data.tar.gz: b28d007b1808f30949e9366519cb4dc8d53e06e0
5
5
  SHA512:
6
- metadata.gz: 7c6284c1978a7e1b85067a7c84df02d0765def31134df7336610ce1b57112b4c398ecab2b419a4848cd48cca49874152bcd53319df44c435b3fea62e5632265c
7
- data.tar.gz: ee1f1aec36b9b8c1ed3315196b3ad55b9a3037533441647f2d2a06691869116994065eb8ffee35097c1d51715a174f883a31f91920b52c6c14ed06b1d79c0bc9
6
+ metadata.gz: 3440191adafc23f249622b12ae5986d669a6b493338d8c6734bc8cca2c30624bb2b874d00527cd7fc0a84360019fe9281d96f95c3b303dcec10c7502e1bd2d39
7
+ data.tar.gz: 6aa97e9d830eaff4f045d570fe3bb11fac80bd074537e0cb2d0e6c8cfd16137df838cc37ef53b6c317e53200f8be49355b7b0ea58b5332dc347ba7e44f6e4a99
@@ -75,7 +75,6 @@ class AllPages
75
75
  if @browser.span(:class,'nibbler-header-user-menu-icon-flag nibbler--flag-us nibbler--lang-es').present?
76
76
  @browser.span(:class,'nibbler-header-user-menu-icon-flag nibbler--flag-us nibbler--lang-es').click
77
77
  @browser.li(:class,'nibbler-header-popup-selector-item').links[0].click
78
- #@browser.execute_script("javascript:void($(\".nibbler-header-popup-selector-item a\").click());")
79
78
  end
80
79
  sleep(1)
81
80
  @browser.alert.ok if @browser.alert.exists?
@@ -1,3 +1,3 @@
1
1
  module FlightsGui
2
- VERSION = "2.0.8"
2
+ VERSION = "2.0.9"
3
3
  end
@@ -0,0 +1,102 @@
1
+ #language: es
2
+ @results
3
+ Característica: results.prueba
4
+ Se verifica que el filtro por precio en matriz funcione y que el fare se muestren correctamente.
5
+
6
+ @prueba
7
+ Esquema del escenario: Ingresar a resultados, filtro por un precio, verificar que se muestre correctamente y sea el fare que se debe aplicar
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
+
14
+ @pt
15
+ Ejemplos:
16
+ |pais|tipo|cabotage|
17
+ |PT |roundtrip|true|
18
+ |PT |multipledestinations|true|
19
+ |PT |oneway|nil|
20
+ @cn
21
+ Ejemplos:
22
+ |pais|tipo|cabotage|
23
+ |CN |roundtrip|true|
24
+ |CN |multipledestinations|true|
25
+ |CN |oneway|nil|
26
+ @in
27
+ Ejemplos:
28
+ |pais|tipo|cabotage|
29
+ |IN |roundtrip|true|
30
+ |IN |multipledestinations|true|
31
+ |IN |oneway|nil|
32
+ @ar
33
+ Ejemplos:
34
+ |pais|tipo|cabotage|
35
+ |AR |roundtrip|true|
36
+ |AR |multipledestinations|true|
37
+ |AR |oneway|nil|
38
+ @br
39
+ Ejemplos:
40
+ |pais|tipo|cabotage|
41
+ |BR |oneway|true|
42
+ |BR |roundtrip|true|
43
+ @co
44
+ Ejemplos:
45
+ |pais|tipo|cabotage|
46
+ |CO |roundtrip|true|
47
+ |CO |oneway|nil|
48
+ |CO |multipledestinations|nil|
49
+ @mx
50
+ Ejemplos:
51
+ |pais|tipo|cabotage|
52
+ |MX |roundtrip|true|
53
+ |MX |oneway|nil|
54
+ |MX |multipledestinations|nil|
55
+ @ve
56
+ Ejemplos:
57
+ |pais|tipo|cabotage|
58
+ |VE |roundtrip|true|
59
+ |VE |oneway|true|
60
+ |VE |multipledestinations|true|
61
+ @cl
62
+ Ejemplos:
63
+ |pais|tipo|cabotage|
64
+ |CL |roundtrip|nil|
65
+ |CL |oneway|nil|
66
+ |CL |multipledestinations|nil|
67
+ @cr
68
+ Ejemplos:
69
+ |pais|tipo|cabotage|
70
+ |CR |roundtrip|true|
71
+ |CR |oneway|true|
72
+ |CR |multipledestinations|nil|
73
+ @ec
74
+ Ejemplos:
75
+ |pais|tipo|cabotage|
76
+ |EC |multipledestinations|true|
77
+ |EC |roundtrip|nil|
78
+ |EC |oneway|nil|
79
+ @pa
80
+ Ejemplos:
81
+ |pais|tipo|cabotage|
82
+ |PA |oneway|true|
83
+ |PA |multipledestinations|true|
84
+ |PA |roundtrip|nil|
85
+ @pe
86
+ Ejemplos:
87
+ |pais|tipo|cabotage|
88
+ |PE |roundtrip|true|
89
+ |PE |oneway|true|
90
+ |PE |multipledestinations|nil|
91
+ @us
92
+ Ejemplos:
93
+ |pais|tipo|cabotage|
94
+ |US |roundtrip|true|
95
+ |US |oneway|true|
96
+ |US |multipledestinations|nil|
97
+ @uy
98
+ Ejemplos:
99
+ |pais|tipo|cabotage|
100
+ |UY |multipledestinations|true|
101
+ |UY |roundtrip|nil|
102
+ |UY |oneway|nil|
@@ -10369,6 +10369,146 @@ tasks:
10369
10369
  recipients:
10370
10370
  - estebanldh@gmail.com
10371
10371
  - nsimean@despegar.com
10372
+ - name: checkout.cac
10373
+ class_name: Henry::Task::CucumberTask
10374
+ options:
10375
+ tags:
10376
+ - checkout
10377
+ - cac
10378
+ expand: true
10379
+ no-source: true
10380
+ reports:
10381
+ - format: html
10382
+ name: ${DATE}_${TASK_NAME}.html
10383
+ recipients:
10384
+ - estebanldh@gmail.com
10385
+ - nsimean@despegar.com
10386
+ - name: checkout.cac.ar
10387
+ class_name: Henry::Task::CucumberTask
10388
+ options:
10389
+ tags:
10390
+ - checkout
10391
+ - cac
10392
+ - ar
10393
+ expand: true
10394
+ no-source: true
10395
+ reports:
10396
+ - format: html
10397
+ name: ${DATE}_${TASK_NAME}.html
10398
+ recipients:
10399
+ - estebanldh@gmail.com
10400
+ - nsimean@despegar.com
10401
+ - name: checkout.cac.ar.roundtrip
10402
+ class_name: Henry::Task::CucumberTask
10403
+ options:
10404
+ tags:
10405
+ - checkout
10406
+ - cac
10407
+ - ar
10408
+ - roundtrip
10409
+ expand: true
10410
+ no-source: true
10411
+ reports:
10412
+ - format: html
10413
+ name: ${DATE}_${TASK_NAME}.html
10414
+ recipients:
10415
+ - estebanldh@gmail.com
10416
+ - nsimean@despegar.com
10417
+ - name: checkout.cac.ar.oneway
10418
+ class_name: Henry::Task::CucumberTask
10419
+ options:
10420
+ tags:
10421
+ - checkout
10422
+ - cac
10423
+ - ar
10424
+ - oneway
10425
+ expand: true
10426
+ no-source: true
10427
+ reports:
10428
+ - format: html
10429
+ name: ${DATE}_${TASK_NAME}.html
10430
+ recipients:
10431
+ - estebanldh@gmail.com
10432
+ - nsimean@despegar.com
10433
+ - name: checkout.cac.ar.multipledestinations
10434
+ class_name: Henry::Task::CucumberTask
10435
+ options:
10436
+ tags:
10437
+ - checkout
10438
+ - cac
10439
+ - ar
10440
+ - multipledestinations
10441
+ expand: true
10442
+ no-source: true
10443
+ reports:
10444
+ - format: html
10445
+ name: ${DATE}_${TASK_NAME}.html
10446
+ recipients:
10447
+ - estebanldh@gmail.com
10448
+ - nsimean@despegar.com
10449
+ - name: checkout.cac.br
10450
+ class_name: Henry::Task::CucumberTask
10451
+ options:
10452
+ tags:
10453
+ - checkout
10454
+ - cac
10455
+ - br
10456
+ expand: true
10457
+ no-source: true
10458
+ reports:
10459
+ - format: html
10460
+ name: ${DATE}_${TASK_NAME}.html
10461
+ recipients:
10462
+ - estebanldh@gmail.com
10463
+ - nsimean@despegar.com
10464
+ - name: checkout.cac.br.roundtrip
10465
+ class_name: Henry::Task::CucumberTask
10466
+ options:
10467
+ tags:
10468
+ - checkout
10469
+ - cac
10470
+ - br
10471
+ - roundtrip
10472
+ expand: true
10473
+ no-source: true
10474
+ reports:
10475
+ - format: html
10476
+ name: ${DATE}_${TASK_NAME}.html
10477
+ recipients:
10478
+ - estebanldh@gmail.com
10479
+ - nsimean@despegar.com
10480
+ - name: checkout.cac.br.oneway
10481
+ class_name: Henry::Task::CucumberTask
10482
+ options:
10483
+ tags:
10484
+ - checkout
10485
+ - cac
10486
+ - br
10487
+ - oneway
10488
+ expand: true
10489
+ no-source: true
10490
+ reports:
10491
+ - format: html
10492
+ name: ${DATE}_${TASK_NAME}.html
10493
+ recipients:
10494
+ - estebanldh@gmail.com
10495
+ - nsimean@despegar.com
10496
+ - name: checkout.cac.br.roundtrip
10497
+ class_name: Henry::Task::CucumberTask
10498
+ options:
10499
+ tags:
10500
+ - checkout
10501
+ - cac
10502
+ - br
10503
+ - roundtrip
10504
+ expand: true
10505
+ no-source: true
10506
+ reports:
10507
+ - format: html
10508
+ name: ${DATE}_${TASK_NAME}.html
10509
+ recipients:
10510
+ - estebanldh@gmail.com
10511
+ - nsimean@despegar.com
10372
10512
  - name: results.search_2_ow
10373
10513
  class_name: Henry::Task::CucumberTask
10374
10514
  options:
@@ -10487,6 +10627,245 @@ tasks:
10487
10627
  recipients:
10488
10628
  - estebanldh@gmail.com
10489
10629
  - nsimean@despegar.com
10630
+ - name: results.prueba
10631
+ class_name: Henry::Task::CucumberTask
10632
+ options:
10633
+ tags:
10634
+ - results
10635
+ - prueba
10636
+ expand: true
10637
+ no-source: true
10638
+ reports:
10639
+ - format: html
10640
+ name: ${DATE}_${TASK_NAME}.html
10641
+ recipients:
10642
+ - estebanldh@gmail.com
10643
+ - nsimean@despegar.com
10644
+ - name: results.prueba.pt
10645
+ class_name: Henry::Task::CucumberTask
10646
+ options:
10647
+ tags:
10648
+ - results
10649
+ - prueba
10650
+ - pt
10651
+ expand: true
10652
+ no-source: true
10653
+ reports:
10654
+ - format: html
10655
+ name: ${DATE}_${TASK_NAME}.html
10656
+ recipients:
10657
+ - estebanldh@gmail.com
10658
+ - nsimean@despegar.com
10659
+ - name: results.prueba.cn
10660
+ class_name: Henry::Task::CucumberTask
10661
+ options:
10662
+ tags:
10663
+ - results
10664
+ - prueba
10665
+ - cn
10666
+ expand: true
10667
+ no-source: true
10668
+ reports:
10669
+ - format: html
10670
+ name: ${DATE}_${TASK_NAME}.html
10671
+ recipients:
10672
+ - estebanldh@gmail.com
10673
+ - nsimean@despegar.com
10674
+ - name: results.prueba.in
10675
+ class_name: Henry::Task::CucumberTask
10676
+ options:
10677
+ tags:
10678
+ - results
10679
+ - prueba
10680
+ - in
10681
+ expand: true
10682
+ no-source: true
10683
+ reports:
10684
+ - format: html
10685
+ name: ${DATE}_${TASK_NAME}.html
10686
+ recipients:
10687
+ - estebanldh@gmail.com
10688
+ - nsimean@despegar.com
10689
+ - name: results.prueba.ar
10690
+ class_name: Henry::Task::CucumberTask
10691
+ options:
10692
+ tags:
10693
+ - results
10694
+ - prueba
10695
+ - ar
10696
+ expand: true
10697
+ no-source: true
10698
+ reports:
10699
+ - format: html
10700
+ name: ${DATE}_${TASK_NAME}.html
10701
+ recipients:
10702
+ - estebanldh@gmail.com
10703
+ - nsimean@despegar.com
10704
+ - name: results.prueba.br
10705
+ class_name: Henry::Task::CucumberTask
10706
+ options:
10707
+ tags:
10708
+ - results
10709
+ - prueba
10710
+ - br
10711
+ expand: true
10712
+ no-source: true
10713
+ reports:
10714
+ - format: html
10715
+ name: ${DATE}_${TASK_NAME}.html
10716
+ recipients:
10717
+ - estebanldh@gmail.com
10718
+ - nsimean@despegar.com
10719
+ - name: results.prueba.co
10720
+ class_name: Henry::Task::CucumberTask
10721
+ options:
10722
+ tags:
10723
+ - results
10724
+ - prueba
10725
+ - co
10726
+ expand: true
10727
+ no-source: true
10728
+ reports:
10729
+ - format: html
10730
+ name: ${DATE}_${TASK_NAME}.html
10731
+ recipients:
10732
+ - estebanldh@gmail.com
10733
+ - nsimean@despegar.com
10734
+ - name: results.prueba.mx
10735
+ class_name: Henry::Task::CucumberTask
10736
+ options:
10737
+ tags:
10738
+ - results
10739
+ - prueba
10740
+ - mx
10741
+ expand: true
10742
+ no-source: true
10743
+ reports:
10744
+ - format: html
10745
+ name: ${DATE}_${TASK_NAME}.html
10746
+ recipients:
10747
+ - estebanldh@gmail.com
10748
+ - nsimean@despegar.com
10749
+ - name: results.prueba.ve
10750
+ class_name: Henry::Task::CucumberTask
10751
+ options:
10752
+ tags:
10753
+ - results
10754
+ - prueba
10755
+ - ve
10756
+ expand: true
10757
+ no-source: true
10758
+ reports:
10759
+ - format: html
10760
+ name: ${DATE}_${TASK_NAME}.html
10761
+ recipients:
10762
+ - estebanldh@gmail.com
10763
+ - nsimean@despegar.com
10764
+ - name: results.prueba.cl
10765
+ class_name: Henry::Task::CucumberTask
10766
+ options:
10767
+ tags:
10768
+ - results
10769
+ - prueba
10770
+ - cl
10771
+ expand: true
10772
+ no-source: true
10773
+ reports:
10774
+ - format: html
10775
+ name: ${DATE}_${TASK_NAME}.html
10776
+ recipients:
10777
+ - estebanldh@gmail.com
10778
+ - nsimean@despegar.com
10779
+ - name: results.prueba.cr
10780
+ class_name: Henry::Task::CucumberTask
10781
+ options:
10782
+ tags:
10783
+ - results
10784
+ - prueba
10785
+ - cr
10786
+ expand: true
10787
+ no-source: true
10788
+ reports:
10789
+ - format: html
10790
+ name: ${DATE}_${TASK_NAME}.html
10791
+ recipients:
10792
+ - estebanldh@gmail.com
10793
+ - nsimean@despegar.com
10794
+ - name: results.prueba.ec
10795
+ class_name: Henry::Task::CucumberTask
10796
+ options:
10797
+ tags:
10798
+ - results
10799
+ - prueba
10800
+ - ec
10801
+ expand: true
10802
+ no-source: true
10803
+ reports:
10804
+ - format: html
10805
+ name: ${DATE}_${TASK_NAME}.html
10806
+ recipients:
10807
+ - estebanldh@gmail.com
10808
+ - nsimean@despegar.com
10809
+ - name: results.prueba.pa
10810
+ class_name: Henry::Task::CucumberTask
10811
+ options:
10812
+ tags:
10813
+ - results
10814
+ - prueba
10815
+ - pa
10816
+ expand: true
10817
+ no-source: true
10818
+ reports:
10819
+ - format: html
10820
+ name: ${DATE}_${TASK_NAME}.html
10821
+ recipients:
10822
+ - estebanldh@gmail.com
10823
+ - nsimean@despegar.com
10824
+ - name: results.prueba.pe
10825
+ class_name: Henry::Task::CucumberTask
10826
+ options:
10827
+ tags:
10828
+ - results
10829
+ - prueba
10830
+ - pe
10831
+ expand: true
10832
+ no-source: true
10833
+ reports:
10834
+ - format: html
10835
+ name: ${DATE}_${TASK_NAME}.html
10836
+ recipients:
10837
+ - estebanldh@gmail.com
10838
+ - nsimean@despegar.com
10839
+ - name: results.prueba.us
10840
+ class_name: Henry::Task::CucumberTask
10841
+ options:
10842
+ tags:
10843
+ - results
10844
+ - prueba
10845
+ - us
10846
+ expand: true
10847
+ no-source: true
10848
+ reports:
10849
+ - format: html
10850
+ name: ${DATE}_${TASK_NAME}.html
10851
+ recipients:
10852
+ - estebanldh@gmail.com
10853
+ - nsimean@despegar.com
10854
+ - name: results.prueba.uy
10855
+ class_name: Henry::Task::CucumberTask
10856
+ options:
10857
+ tags:
10858
+ - results
10859
+ - prueba
10860
+ - uy
10861
+ expand: true
10862
+ no-source: true
10863
+ reports:
10864
+ - format: html
10865
+ name: ${DATE}_${TASK_NAME}.html
10866
+ recipients:
10867
+ - estebanldh@gmail.com
10868
+ - nsimean@despegar.com
10490
10869
  - name: checkout.online_payment
10491
10870
  class_name: Henry::Task::CucumberTask
10492
10871
  options:
@@ -11858,146 +12237,6 @@ tasks:
11858
12237
  recipients:
11859
12238
  - estebanldh@gmail.com
11860
12239
  - nsimean@despegar.com
11861
- - name: checkout.cac
11862
- class_name: Henry::Task::CucumberTask
11863
- options:
11864
- tags:
11865
- - checkout
11866
- - cac
11867
- expand: true
11868
- no-source: true
11869
- reports:
11870
- - format: html
11871
- name: ${DATE}_${TASK_NAME}.html
11872
- recipients:
11873
- - estebanldh@gmail.com
11874
- - nsimean@despegar.com
11875
- - name: checkout.cac.ar
11876
- class_name: Henry::Task::CucumberTask
11877
- options:
11878
- tags:
11879
- - checkout
11880
- - cac
11881
- - ar
11882
- expand: true
11883
- no-source: true
11884
- reports:
11885
- - format: html
11886
- name: ${DATE}_${TASK_NAME}.html
11887
- recipients:
11888
- - estebanldh@gmail.com
11889
- - nsimean@despegar.com
11890
- - name: checkout.cac.ar.roundtrip
11891
- class_name: Henry::Task::CucumberTask
11892
- options:
11893
- tags:
11894
- - checkout
11895
- - cac
11896
- - ar
11897
- - roundtrip
11898
- expand: true
11899
- no-source: true
11900
- reports:
11901
- - format: html
11902
- name: ${DATE}_${TASK_NAME}.html
11903
- recipients:
11904
- - estebanldh@gmail.com
11905
- - nsimean@despegar.com
11906
- - name: checkout.cac.ar.oneway
11907
- class_name: Henry::Task::CucumberTask
11908
- options:
11909
- tags:
11910
- - checkout
11911
- - cac
11912
- - ar
11913
- - oneway
11914
- expand: true
11915
- no-source: true
11916
- reports:
11917
- - format: html
11918
- name: ${DATE}_${TASK_NAME}.html
11919
- recipients:
11920
- - estebanldh@gmail.com
11921
- - nsimean@despegar.com
11922
- - name: checkout.cac.ar.multipledestinations
11923
- class_name: Henry::Task::CucumberTask
11924
- options:
11925
- tags:
11926
- - checkout
11927
- - cac
11928
- - ar
11929
- - multipledestinations
11930
- expand: true
11931
- no-source: true
11932
- reports:
11933
- - format: html
11934
- name: ${DATE}_${TASK_NAME}.html
11935
- recipients:
11936
- - estebanldh@gmail.com
11937
- - nsimean@despegar.com
11938
- - name: checkout.cac.br
11939
- class_name: Henry::Task::CucumberTask
11940
- options:
11941
- tags:
11942
- - checkout
11943
- - cac
11944
- - br
11945
- expand: true
11946
- no-source: true
11947
- reports:
11948
- - format: html
11949
- name: ${DATE}_${TASK_NAME}.html
11950
- recipients:
11951
- - estebanldh@gmail.com
11952
- - nsimean@despegar.com
11953
- - name: checkout.cac.br.roundtrip
11954
- class_name: Henry::Task::CucumberTask
11955
- options:
11956
- tags:
11957
- - checkout
11958
- - cac
11959
- - br
11960
- - roundtrip
11961
- expand: true
11962
- no-source: true
11963
- reports:
11964
- - format: html
11965
- name: ${DATE}_${TASK_NAME}.html
11966
- recipients:
11967
- - estebanldh@gmail.com
11968
- - nsimean@despegar.com
11969
- - name: checkout.cac.br.oneway
11970
- class_name: Henry::Task::CucumberTask
11971
- options:
11972
- tags:
11973
- - checkout
11974
- - cac
11975
- - br
11976
- - oneway
11977
- expand: true
11978
- no-source: true
11979
- reports:
11980
- - format: html
11981
- name: ${DATE}_${TASK_NAME}.html
11982
- recipients:
11983
- - estebanldh@gmail.com
11984
- - nsimean@despegar.com
11985
- - name: checkout.cac.br.roundtrip
11986
- class_name: Henry::Task::CucumberTask
11987
- options:
11988
- tags:
11989
- - checkout
11990
- - cac
11991
- - br
11992
- - roundtrip
11993
- expand: true
11994
- no-source: true
11995
- reports:
11996
- - format: html
11997
- name: ${DATE}_${TASK_NAME}.html
11998
- recipients:
11999
- - estebanldh@gmail.com
12000
- - nsimean@despegar.com
12001
12240
  - name: checkout.debito
12002
12241
  class_name: Henry::Task::CucumberTask
12003
12242
  options:
@@ -13984,21 +14223,6 @@ tasks:
13984
14223
  recipients:
13985
14224
  - estebanldh@gmail.com
13986
14225
  - nsimean@despegar.com
13987
- - name: checkout.providers.wds
13988
- class_name: Henry::Task::CucumberTask
13989
- options:
13990
- tags:
13991
- - checkout
13992
- - providers
13993
- - wds
13994
- expand: true
13995
- no-source: true
13996
- reports:
13997
- - format: html
13998
- name: ${DATE}_${TASK_NAME}.html
13999
- recipients:
14000
- - estebanldh@gmail.com
14001
- - nsimean@despegar.com
14002
14226
  - name: checkout.seguros
14003
14227
  class_name: Henry::Task::CucumberTask
14004
14228
  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: 2.0.8
4
+ version: 2.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - lgonzalez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-23 00:00:00.000000000 Z
11
+ date: 2015-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: henry-container
@@ -348,16 +348,17 @@ files:
348
348
  - features/support/pages/thanks/thanks_page.rb
349
349
  - features/support/version.rb
350
350
  - features/tests/black_list/busquedas_promo.feature
351
+ - features/tests/black_list/cac.feature
351
352
  - features/tests/black_list/cash_payment.feature
352
353
  - features/tests/black_list/compras_duplicadas.feature
353
354
  - features/tests/black_list/cupones.feature
354
355
  - features/tests/black_list/online_payment.feature
356
+ - features/tests/black_list/prueba.feature
355
357
  - features/tests/black_list/two_oneway.feature
356
358
  - features/tests/black_list/two_oneway_r.feature
357
359
  - features/tests/black_list/wish_list.feature
358
360
  - features/tests/checkout/book_ok.feature
359
361
  - features/tests/checkout/braspag.feature
360
- - features/tests/checkout/cac.feature
361
362
  - features/tests/checkout/compatibility.feature
362
363
  - features/tests/checkout/debito.feature
363
364
  - features/tests/checkout/error_messages.feature