-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
summary/OutcomeException: add support for short_msg
This is meant to improve the short msg with `-r`, where you want to see the non-matched line, and not the first line (that might have matched), from pytester's `_match_lines`. This will also come in handy for a better `__repr__`.
- Loading branch information
Showing
6 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from _pytest.outcomes import OutcomeException | ||
|
||
|
||
def test_OutcomeException(): | ||
assert repr(OutcomeException()) == "<OutcomeException msg=None>" | ||
assert repr(OutcomeException(msg="msg")) == "<OutcomeException msg='msg'>" | ||
assert repr(OutcomeException(msg="msg\nline2")) == "<OutcomeException msg='msg...'>" | ||
assert ( | ||
repr(OutcomeException(short_msg="short")) | ||
== "<OutcomeException short_msg='short'>" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters