Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
41b2404d
Commit
41b2404d
authored
Jan 21, 2012
by
Sandro Tosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix typo; thanks to Justin Watt from docs@
parent
3800ea9f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Doc/library/unittest.rst
Doc/library/unittest.rst
+1
-1
No files found.
Doc/library/unittest.rst
View file @
41b2404d
...
@@ -376,7 +376,7 @@ The simplest :class:`TestCase` subclass will simply override the
...
@@ -376,7 +376,7 @@ The simplest :class:`TestCase` subclass will simply override the
widget = Widget('The widget')
widget = Widget('The widget')
self.assertEqual(widget.size(), (50, 50), 'incorrect default size')
self.assertEqual(widget.size(), (50, 50), 'incorrect default size')
Note that in order to test something, we use
the
one of the :meth:`assert\*`
Note that in order to test something, we use one of the :meth:`assert\*`
methods provided by the :class:`TestCase` base class. If the test fails, an
methods provided by the :class:`TestCase` base class. If the test fails, an
exception will be raised, and :mod:`unittest` will identify the test case as a
exception will be raised, and :mod:`unittest` will identify the test case as a
:dfn:`failure`. Any other exceptions will be treated as :dfn:`errors`. This
:dfn:`failure`. Any other exceptions will be treated as :dfn:`errors`. This
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment