@@ -15,7 +15,7 @@ msgstr ""
15
15
"Project-Id-Version : Python 3.8\n "
16
16
"Report-Msgid-Bugs-To : \n "
17
17
"POT-Creation-Date : 2020-05-05 12:54+0200\n "
18
- "PO-Revision-Date : 2020-08-23 11:31 +0200\n "
18
+ "PO-Revision-Date : 2020-08-25 01:34 +0200\n "
19
19
"Language-Team : python-doc-es\n "
20
20
"MIME-Version : 1.0\n "
21
21
"Content-Type : text/plain; charset=UTF-8\n "
@@ -56,7 +56,7 @@ msgstr ""
56
56
"estructuras de pruebas unitarias más importantes de otros lenguajes. Da "
57
57
"soporte a automatización de pruebas, inicialización compartida, código de "
58
58
"cierre de las pruebas, agregación de las pruebas en colecciones e "
59
- "independencia de los tests de la infraestructura que los reporta"
59
+ "independencia de los tests de la infraestructura que los reporta. "
60
60
61
61
#: ../Doc/library/unittest.rst:25
62
62
msgid ""
@@ -883,65 +883,80 @@ msgid ""
883
883
"skipTest` within a :meth:`~TestCase.setUp` or test method, or raising :exc:"
884
884
"`SkipTest` directly."
885
885
msgstr ""
886
+ "Omitir un test es solo cuestión de emplear el :term:`decorator` :func:"
887
+ "`skip` o una de sus variantes condicionales, llamando a :meth:`TestCase."
888
+ "skipTest` dentro de :meth:`~TestCase.setUp` o en un método de test, o "
889
+ "lanzando :exc:`SkipTest` directamente."
886
890
887
891
#: ../Doc/library/unittest.rst:516
888
892
msgid "Basic skipping looks like this::"
889
- msgstr ""
893
+ msgstr "La omisión más básica tiene la siguiente forma: "
890
894
891
895
#: ../Doc/library/unittest.rst:541
892
896
msgid "This is the output of running the example above in verbose mode::"
893
- msgstr ""
897
+ msgstr "Esta es la salida de ejecutar el ejemplo superior en modo verboso:: "
894
898
895
899
#: ../Doc/library/unittest.rst:553
896
900
msgid "Classes can be skipped just like methods::"
897
- msgstr ""
901
+ msgstr "Las clases pueden ser omitidas igual que los métodos:: "
898
902
899
903
#: ../Doc/library/unittest.rst:560
900
904
msgid ""
901
905
":meth:`TestCase.setUp` can also skip the test. This is useful when a "
902
906
"resource that needs to be set up is not available."
903
907
msgstr ""
908
+ ":meth:`TestCase.setUp` puede omitir también el test. Esto es útil cuando un "
909
+ "recurso que necesita ser puesto a punto no está disponible."
904
910
905
911
#: ../Doc/library/unittest.rst:563
906
912
msgid "Expected failures use the :func:`expectedFailure` decorator. ::"
907
- msgstr ""
913
+ msgstr "Los fallos esperados emplean el decorador :func:`expectedFailure`. :: "
908
914
909
915
#: ../Doc/library/unittest.rst:570
910
916
msgid ""
911
917
"It's easy to roll your own skipping decorators by making a decorator that "
912
918
"calls :func:`skip` on the test when it wants it to be skipped. This "
913
919
"decorator skips the test unless the passed object has a certain attribute::"
914
920
msgstr ""
921
+ "Es fácil lanzar tus propios decoradores que omitan haciendo un decorador que "
922
+ "llame a :func:`skip` en el test cuando quiere ser omitido. Este decorador "
923
+ "omite el test a menos que el objeto pasado tenga un cierto atributo::"
915
924
916
925
#: ../Doc/library/unittest.rst:579
917
926
msgid ""
918
927
"The following decorators and exception implement test skipping and expected "
919
928
"failures:"
920
929
msgstr ""
930
+ "Los siguientes decoradores y la excepción implementan la omisión de tests y "
931
+ "los fallos esperados:"
921
932
922
933
#: ../Doc/library/unittest.rst:583
923
934
msgid ""
924
935
"Unconditionally skip the decorated test. *reason* should describe why the "
925
936
"test is being skipped."
926
937
msgstr ""
938
+ "Omitir incondicionalmente el test decorado. *reason* debe describir porqué "
939
+ "el test está siendo omitido."
927
940
928
941
#: ../Doc/library/unittest.rst:588
929
942
msgid "Skip the decorated test if *condition* is true."
930
- msgstr ""
943
+ msgstr "Omitir el test decorado si *condition* es verdadero. "
931
944
932
945
#: ../Doc/library/unittest.rst:592
933
946
msgid "Skip the decorated test unless *condition* is true."
934
- msgstr ""
947
+ msgstr "Omitir el test decorado a menos que *condition* sea verdadero. "
935
948
936
949
#: ../Doc/library/unittest.rst:596
937
950
msgid ""
938
951
"Mark the test as an expected failure. If the test fails it will be "
939
952
"considered a success. If the test passes, it will be considered a failure."
940
953
msgstr ""
954
+ "Marca el test como un fallo esperado. Si el test falla será considerado un "
955
+ "éxito. Si el test pasa, será considerado un fallo."
941
956
942
957
#: ../Doc/library/unittest.rst:601
943
958
msgid "This exception is raised to skip a test."
944
- msgstr ""
959
+ msgstr "Esta excepción es lanzada para omitir un test. "
945
960
946
961
#: ../Doc/library/unittest.rst:603
947
962
msgid ""
0 commit comments