flights_gui_tests 2.3.12 → 2.3.13
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da5fda11d5f867d8f98b3c40408f5d9885d8e7b6
|
|
4
|
+
data.tar.gz: 22738c738fef89bfbb87261b06f5cafcb79b18e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ee017472f17c078eee9d95dda18bdc30150c48cdd37b695891dedb4f9c8a4e375476440b61e8c16b29863ceaafbde3001aedca1c8728d1b0b410bcc1341c6f4
|
|
7
|
+
data.tar.gz: ff1b9f38c9f86a09adb9e0718eed3a474a22bf6ec1091c094e52ba620b8154574a99fe6ce2558bba239d6ff3add0411c4d63c13cb977e124136eedc12ff9705a
|
|
@@ -36,7 +36,11 @@ Y(/^(?:verifico|valido) que traiga precios con formato correcto y positivos$/) d
|
|
|
36
36
|
@page.datos_de_itinerarios.each do |cluster|
|
|
37
37
|
if cluster.tarifas
|
|
38
38
|
tarifa = @page.dolares_element.present? ? cluster.tarifas['tarifa_adulto_dolar'] : cluster.tarifas['tarifa_adulto']
|
|
39
|
-
|
|
39
|
+
if AllPages.site=="MX"
|
|
40
|
+
tarifa.to_s.match(/\./).should_not be_true
|
|
41
|
+
else
|
|
42
|
+
tarifa.to_s.match(/\,/).should_not be_true
|
|
43
|
+
end
|
|
40
44
|
tarifa.to_s.match(/\-/).should_not be_true
|
|
41
45
|
end
|
|
42
46
|
end
|
data/features/support/version.rb
CHANGED