-
Notifications
You must be signed in to change notification settings - Fork 56
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 #613 from akaihola/split-test_main
refactor,test: huge test_main.py into pieces
- Loading branch information
Showing
5 changed files
with
425 additions
and
373 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,6 @@ | ||
"""Example Python source code for testing.""" | ||
|
||
A_PY = ["import sys", "import os", "print( '{}'.format('42'))", ""] | ||
A_PY_BLACK = ["import sys", "import os", "", 'print("{}".format("42"))', ""] | ||
A_PY_BLACK_ISORT = ["import os", "import sys", "", 'print("{}".format("42"))', ""] | ||
A_PY_BLACK_FLYNT = ["import sys", "import os", "", 'print("42")', ""] |
Oops, something went wrong.