- Notifications
You must be signed in to change notification settings - Fork397
Continuing the translation of unittest#651
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
6e5aeea
6ff2b65
05c2e5b
6e0553f
0c5dd00
1100a91
f7f2f84
5fdc573
88af811
04cb4e6
2e71650
d1c17b3
0a553d4
aabab5c
cb9dfce
6c81d40
8a02f89
2eb49fe
d5277be
023f782
42ec7e4
6abae71
5741294
afeb9db
39effc0
a916fc3
b880a67
422d65c
7998f09
408af5e
1e02dd9
615258d
50f621a
ff83b0a
01cfa9a
5ab2fc0
26dd96c
2d824a6
18c6008
93c7481
6e6de66
847f2c4
b3f0bbd
a1e95f7
8110b05
6defc20
1f1c2dd
468c40e
0df93da
1188c3a
05e90e9
0aa90e5
cf74e91
3604588
7f36a39
2090af8
4524aa2
85630b9
0d5a450
1bc26eb
14db9ba
26be935
444b5b2
81a722f
783809f
46bd96f
f8fbbe7
6f2d222
9fb4df6
88eb9f0
4817198
46fd145
9330110
4ef73a4
fbf7721
1504a2d
e964069
30e3e07
6d219bf
c07a332
9972be7
cca61ab
a2a31cd
865bbc0
0d22bbb
dad8cba
72b24dd
8b25bc6
aa11d88
03ef97e
db5aa7a
4847db0
6648663
480957b
cb69710
a5a3c7f
e4ae11c
06ec949
77dabf9
cf35462
b5b79f1
e5d2edb
8dba474
3a3c22f
1ef574a
c6e4380
9ce1775
cfe8fb0
7a79cb9
8ac0252
7eb6c0c
bcf56c8
d5fd35e
e2e72fe
9665ec9
a37c773
c3a5309
64b5623
bf5bb80
d504ac4
61cd288
713cbca
76bea6c
2f410a2
6e6edef
336dbe2
1e8d2c2
5161d66
5a5ff85
00d9c21
f34d536
43af7a2
243d571
a1904fe
e75e32c
57a19ac
ffe136a
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -15,7 +15,7 @@ msgstr "" | ||
"Project-Id-Version: Python 3.8\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2020-05-05 12:54+0200\n" | ||
"PO-Revision-Date: 2020-11-15 09:19+0000\n" | ||
"Language-Team: python-doc-es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
@@ -3592,14 +3592,17 @@ msgstr "setUpClass y tearDownClass" | ||
#: ../Doc/library/unittest.rst:2348 | ||
msgid "These must be implemented as class methods::" | ||
msgstr "Estos deben ser implementados como métodos de clase::" | ||
#: ../Doc/library/unittest.rst:2361 | ||
msgid "" | ||
"If you want the ``setUpClass`` and ``tearDownClass`` on base classes called " | ||
"then you must call up to them yourself. The implementations in :class:" | ||
"`TestCase` are empty." | ||
msgstr "" | ||
"Si quieres que se invoque a \"SetUpClass\" y \"BreakdownClass\" en clases " | ||
cmaureir marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"base, debes llamarlos tú mismo. Las implementaciones en :class:`TestCase` " | ||
"están vacías." | ||
#: ../Doc/library/unittest.rst:2365 | ||
msgid "" | ||
@@ -3609,6 +3612,11 @@ msgid "" | ||
"`SkipTest` exception then the class will be reported as having been skipped " | ||
"instead of as an error." | ||
msgstr "" | ||
"Si se lanza una excepción durante una \"SetUpClass\", entonces los tests de " | ||
cmaureir marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"la clase no se ejecutan y la \"BreakDownClass\" no se ejecuta. Las clases " | ||
cmaureir marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"que se salten no tendrán \"setUpClass\" o \"tearDownClass\". Si la excepción " | ||
cmaureir marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"es una :exc:`SkipTest`` entonces la clase será reportada como salteada en " | ||
"lugar de como un error." | ||
#: ../Doc/library/unittest.rst:2373 | ||
msgid "setUpModule and tearDownModule" | ||
@@ -3625,6 +3633,10 @@ msgid "" | ||
"exception is a :exc:`SkipTest` exception then the module will be reported as " | ||
"having been skipped instead of as an error." | ||
msgstr "" | ||
"Si se lanza una excepción en un ``setUpModule``, entonces no se ejecutará " | ||
"ninguna de las pruebas del módulo y no se ejecutará el ``tearDownModule``. " | ||
"Si la excepción es una :exc:`SkipTest` entonces el módulo será reportado " | ||
"como saltado en lugar de como un error." | ||
#: ../Doc/library/unittest.rst:2388 | ||
msgid "" | ||
@@ -3642,31 +3654,47 @@ msgid "" | ||
"are called with any arguments and keyword arguments passed into :meth:" | ||
"`addModuleCleanup` when they are added." | ||
msgstr "" | ||
"Añade una función que se llamará después de :func:`tearDownModule` para " | ||
"limpiar los recursos utilizados durante la clase de test. Las funciones se " | ||
"llamarán en orden inverso al orden en que se agregan (:abbr:`LIFO (last-in, " | ||
"first-out)`). Se llaman con cualquier argumento y palabra clave que se pase " | ||
"a :meth:`addModuleCleanup` cuando se añadan." | ||
#: ../Doc/library/unittest.rst:2400 | ||
msgid "" | ||
"If :meth:`setUpModule` fails, meaning that :func:`tearDownModule` is not " | ||
"called, then any cleanup functions added will still be called." | ||
msgstr "" | ||
"Si :meth:`setUpModule` falla, lo que significa que :func:`tearDownModule` no " | ||
"se invoca, entonces cualquier función de limpieza añadida seguirá siendo " | ||
"invocada." | ||
#: ../Doc/library/unittest.rst:2408 | ||
msgid "" | ||
"This function is called unconditionally after :func:`tearDownModule`, or " | ||
"after :func:`setUpModule` if :func:`setUpModule` raises an exception." | ||
msgstr "" | ||
"Esta función se llama incondicionalmente después de :func:`tearDownModule`, " | ||
"o después de :func:`setUpModule` si :func:`setUpModule` lanza una excepción." | ||
#: ../Doc/library/unittest.rst:2411 | ||
msgid "" | ||
"It is responsible for calling all the cleanup functions added by :func:" | ||
"`addCleanupModule`. If you need cleanup functions to be called *prior* to :" | ||
"func:`tearDownModule` then you can call :func:`doModuleCleanups` yourself." | ||
msgstr "" | ||
"Es responsable de invocar a todas las funciones de limpieza añadidas por :" | ||
"func:`addCleanupModule`. Si necesitas que las funciones de limpieza se " | ||
"llamen *previamente* a :func:`tearDownModule` entonces puedes invocar a :" | ||
"func:`doModuleCleanups` tú mismo." | ||
#: ../Doc/library/unittest.rst:2416 | ||
msgid "" | ||
":func:`doModuleCleanups` pops methods off the stack of cleanup functions one " | ||
"at a time, so it can be called at any time." | ||
msgstr "" | ||
":func:`doModuleCleanups` saca los métodos de la pila de funciones de " | ||
"limpieza uno a uno, así que se puede llamar en cualquier momento." | ||
#: ../Doc/library/unittest.rst:2422 | ||
msgid "Signal Handling" | ||