Skip to content

Commit f27d5cf

Browse files
committed
Closes #603 - update library/unittest.po to reflect recent changes
1 parent 5cfbc53 commit f27d5cf

File tree

1 file changed

+19
-29
lines changed

1 file changed

+19
-29
lines changed

library/unittest.po

+19-29
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,10 @@ msgid ""
131131
msgstr ":mod:`unittest`\\에 영향을 준 Kent Beck의 패턴을 사용한 테스트 프레임워크 원본 논문"
132132

133133
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:61
134-
#, fuzzy
135134
msgid "`pytest <https://docs.pytest.org/>`_"
136-
msgstr ""
137-
"`Nose <https://nose.readthedocs.io/>`_\\와 `pytest "
138-
"<https://docs.pytest.org/>`_"
135+
msgstr "`pytest <https://docs.pytest.org/>`_"
139136

140137
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:60
141-
#, fuzzy
142138
msgid ""
143139
"Third-party unittest framework with a lighter-weight syntax for writing "
144140
"tests. For example, ``assert func(10) == 42``."
@@ -2114,23 +2110,21 @@ msgstr ""
21142110
msgid ""
21152111
"This class provides an API similar to :class:`TestCase` and also accepts "
21162112
"coroutines as test functions."
2117-
msgstr ""
2113+
msgstr "이 클래스는 :class:`TestCase`\\와 유사한 API를 제공하며 코루틴을 테스트 함수로 받아들입니다."
21182114

21192115
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1498
2120-
#, fuzzy
21212116
msgid ""
21222117
"Method called to prepare the test fixture. This is called after "
21232118
":meth:`setUp`. This is called immediately before calling the test method;"
21242119
" other than :exc:`AssertionError` or :exc:`SkipTest`, any exception "
21252120
"raised by this method will be considered an error rather than a test "
21262121
"failure. The default implementation does nothing."
21272122
msgstr ""
2128-
"테스트 픽스쳐를 준비하기 위해 호출되는 메서드입니다. 이 메서드는 테스트 메서드를 호출하기 바로 직전에 호출됩니다; "
2129-
":exc:`AssertionError` 또는 :exc:`SkipTest`\\이외의 이 메서드에서 발생한 모든 예외는 테스트 실패가 "
2130-
"아닌 오류로 간주합니다. 기본 구현은 아무것도 하지 않습니다."
2123+
"테스트 픽스쳐를 준비하기 위해 호출되는 메서드입니다. 이 메서드는 :meth:`setUp`\\이후에 호출됩니다. 이 메서드는 테스트"
2124+
" 메서드를 호출하기 바로 직전에 호출됩니다; :exc:`AssertionError` 또는 :exc:`SkipTest`\\이외의 이 "
2125+
"메서드에서 발생한 모든 예외는 테스트 실패가 아닌 오류로 간주합니다. 기본 구현은 아무것도 하지 않습니다."
21312126

21322127
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1506
2133-
#, fuzzy
21342128
msgid ""
21352129
"Method called immediately after the test method has been called and the "
21362130
"result recorded. This is called before :meth:`tearDown`. This is called "
@@ -2143,18 +2137,17 @@ msgid ""
21432137
":meth:`asyncSetUp` succeeds, regardless of the outcome of the test "
21442138
"method. The default implementation does nothing."
21452139
msgstr ""
2146-
"테스트 메서드가 불리고 결과가 기록되고 나서 바로 다음에 호출되는 메서드입니다. 테스트 메서드가 예외를 발생했더라도 이 메서드는 "
2147-
"불립니다, 따라서 서브 클래스의 구현은 내부 상태를 확인하는 데 특별히 주의를 기울여야 합니다. "
2148-
":exc:`AssertionError` 또는 :exc:`SkipTest`\\이외의 이 메서드에서 발생하는 모든 예외는 테스트 실패가"
2149-
" 아닌 오류로 간주합니다(따라서 보고된 오류의 총 숫자가 증가합니다). 이 메서드는 테스트 메서드의 결과물에 영향받지 않고 "
2150-
":meth:`setUp`\\이 성공했을 때만 불립니다. 기본 구현은 아무것도 하지 않습니다."
2140+
"테스트 메서드가 불리고 결과가 기록되고 나서 바로 다음에 호출되는 메서드입니다. 이 메서드는 :meth:`tearDown`\\전에 "
2141+
"호출됩니다. 테스트 메서드가 예외를 발생했더라도 이 메서드는 불립니다, 따라서 서브 클래스의 구현은 내부 상태를 확인하는 데 특별히"
2142+
" 주의를 기울여야 합니다. :exc:`AssertionError` 또는 :exc:`SkipTest`\\이외의 이 메서드에서 발생하는"
2143+
" 모든 예외는 테스트 실패가 아닌 오류로 간주합니다(따라서 보고된 오류의 총 숫자가 증가합니다). 이 메서드는 테스트 메서드의 "
2144+
"결과물에 영향받지 않고 :meth:`asyncSetUp`\\이 성공했을 때만 불립니다. 기본 구현은 아무것도 하지 않습니다."
21512145

21522146
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1518
21532147
msgid "This method accepts a coroutine that can be used as a cleanup function."
2154-
msgstr ""
2148+
msgstr "이 메서드는 정리 함수로 사용할 수 있는 코루틴을 받아들입니다."
21552149

21562150
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1522
2157-
#, fuzzy
21582151
msgid ""
21592152
"Sets up a new event loop to run the test, collecting the result into the "
21602153
":class:`TestResult` object passed as *result*. If *result* is omitted or"
@@ -2163,20 +2156,24 @@ msgid ""
21632156
" to :meth:`run`'s caller. At the end of the test all the tasks in the "
21642157
"event loop are cancelled."
21652158
msgstr ""
2166-
"테스트를 실행하고, *result* 인자로 전달된 :class:`TestResult`\\에 결과를 수집합니다. 만약 *result*"
2167-
" 인자가 전달 안 되거나 ``None``\\이라면 임시 결과 객체를 (:meth:`defaultTestResult` 메서드를 "
2168-
"불러서) 생성하여 사용합니다. :meth:`run` 호출자에게 결과 객체를 반환합니다."
2159+
"테스트를 실행하기 위한 새 이벤트 루프를 설정하고, *result* 인자로 전달된 :class:`TestResult`\\에 결과를 "
2160+
"수집합니다. 만약 *result* 인자가 전달 안 되거나 ``None``\\이라면 임시 결과 객체를 "
2161+
"(:meth:`defaultTestResult` 메서드를 불러서) 생성하여 사용합니다. :meth:`run` 호출자에게 결과 객체를"
2162+
" 반환합니다. 테스트의 끝에서 이벤트 루프의 모든 태스크는 취소됩니다."
21692163

21702164
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1530
21712165
msgid "An example illustrating the order::"
2172-
msgstr ""
2166+
msgstr "순서를 보여주는 예::"
21732167

21742168
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1566
21752169
msgid ""
21762170
"After running the test, ``events`` would contain ``[\"setUp\", "
21772171
"\"asyncSetUp\", \"test_response\", \"asyncTearDown\", \"tearDown\", "
21782172
"\"cleanup\"]``."
21792173
msgstr ""
2174+
"테스트를 실행한 후, ``events``\\에는 ``[\"setUp\", \"asyncSetUp\", "
2175+
"\"test_response\", \"asyncTearDown\", \"tearDown\", \"cleanup\"]``\\가 "
2176+
"포함됩니다."
21802177

21812178
#: /Users/flowdas/works/docs/python/src/Doc/library/unittest.rst:1571
21822179
msgid ""
@@ -3644,10 +3641,3 @@ msgstr ""
36443641
"인자 없이 호출된 경우 이 함수는 만약 control-c 처리기가 설치되었다면 그것을 제거합니다. 또한 이 함수는 테스트 실행 중에"
36453642
" 임시로 처리기를 제거하기 위해 테스트 데코레이터로써 사용될 수도 있습니다::"
36463643

3647-
#~ msgid ""
3648-
#~ "After running the test ``events`` would"
3649-
#~ " contain ``[\"setUp\", \"asyncSetUp\", "
3650-
#~ "\"test_response\", \"asyncTearDown\", \"tearDown\", "
3651-
#~ "\"cleanup\"]``"
3652-
#~ msgstr ""
3653-

0 commit comments

Comments
 (0)