-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
That was fairly annoying because of the JSON literal in the test. Using raw strings is good to not need to escape all the quotes, but it makes it super hard to split a line. Just putting it into a new file is probably the best idea.
- Loading branch information
1 parent
698e85e
commit 431df0d
Showing
4 changed files
with
49 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ "type": "suite", "event": "started", "test_count": 17 } | ||
{ "type": "test", "event": "started", "name": "cat" } | ||
{ "type": "test", "name": "cat", "event": "ok" } | ||
{ "type": "test", "event": "started", "name": "\"ups\"" } | ||
{ "type": "test", "name": "\"ups\"", "event": "failed", "stdout": "Error: \"failed to parse \"abc\"\"\n" } | ||
{ "type": "test", "event": "started", "name": "dog" } | ||
{ "type": "test", "name": "dog", "event": "failed", "stdout": "Error: \"was not a good boy\"\n" } | ||
{ "type": "test", "event": "started", "name": "fox" } | ||
{ "type": "test", "name": "fox", "event": "ok" } | ||
{ "type": "test", "event": "started", "name": "bunny" } | ||
{ "type": "test", "name": "bunny", "event": "failed", "stdout": "Error: \"jumped too high\"\n" } | ||
{ "type": "test", "event": "started", "name": "frog" } | ||
{ "type": "test", "name": "frog", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "owl" } | ||
{ "type": "test", "name": "owl", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "fly" } | ||
{ "type": "test", "name": "fly", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "bear" } | ||
{ "type": "test", "name": "bear", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "red" } | ||
{ "type": "test", "name": "red", "event": "ok" } | ||
{ "type": "test", "event": "started", "name": "blue" } | ||
{ "type": "test", "name": "blue", "event": "failed", "stdout": "Error: \"sky fell down\"\n" } | ||
{ "type": "test", "event": "started", "name": "yellow" } | ||
{ "type": "test", "name": "yellow", "event": "ok" } | ||
{ "type": "test", "event": "started", "name": "green" } | ||
{ "type": "test", "name": "green", "event": "failed", "stdout": "Error: \"was poisoned\"\n" } | ||
{ "type": "test", "event": "started", "name": "purple" } | ||
{ "type": "test", "name": "purple", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "cyan" } | ||
{ "type": "test", "name": "cyan", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "orange" } | ||
{ "type": "test", "name": "orange", "event": "ignored" } | ||
{ "type": "test", "event": "started", "name": "pink" } | ||
{ "type": "test", "name": "pink", "event": "ignored" } | ||
{ "type": "suite", "event": "failed", "passed": 4, "failed": 5, "ignored": 8, "measured": 0, "filtered_out": 0, "exec_time": 0.000000000 } |
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