-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from codecov/joseph/failure-message-attr
fix: handle case where failure test is empty and message is in attribute
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<testsuites tests="2" failures="1" errors="0" skipped="0" time="1.234"> | ||
<testsuite name="test" tests="2" errors="0" failures="0" skipped="0" time="1.234"> | ||
<testcase classname="test.test" | ||
name="test.test works" | ||
file="./test.rb" time="0.234" /> | ||
</testsuite> | ||
<testcase classname="test.test" | ||
name="test.test fails" | ||
file="./test.rb" time="1.000"> | ||
<failure message="TestError" | ||
type="TestError"> | ||
</failure> | ||
</testcase> | ||
</testsuites> |
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