forked from stephengrice/onenote-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚚 Moves Tests to Dedicated Subpackages
This makes it easier to discover the tests, and gives a little more breathing room for expanding them.
- Loading branch information
1 parent
c68fefb
commit 505c0f4
Showing
12 changed files
with
16 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
import unittest | ||
from path_scrubbing.TestDateDigitsSubstitutionFactory import * | ||
from path_scrubbing.TestTimeDigitsSubstitutionFactory import * | ||
from path_scrubbing.TestPathComponentScrubber import * | ||
from onenote_export.TestOneNoteExporter import * | ||
from onenote_export.TestOneNoteExportMiddlewareContext import * | ||
from onenote_export.TestOneNoteExportMiddlewareContextFactory import * | ||
from onenote_export.TestOneNoteExportMiddlewareDispatcher import * | ||
from onenote_export.TestOneNotePageExporter import * | ||
from onenote_export.TestSimpleExportMiddlewareFactory import * | ||
from test_onenote_export import * | ||
from test_path_scrubbing import * | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
onenote_export/TestOneNotePageExporter.py → ...onenote_export/TestOneNotePageExporter.py
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
File renamed without changes.
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 @@ | ||
from .TestOneNotePageExporter import TestOneNotePageExporter | ||
from .TestOneNoteExportMiddlewareContext import TestOneNoteExportMiddlewareContext | ||
from .TestOneNoteExportMiddlewareContextFactory import TestOneNoteExportMiddlewareContextFactory | ||
from .TestOneNoteExportMiddlewareDispatcher import TestOneNoteExportMiddlewareDispatcher | ||
from .TestOneNotePageExporter import TestOneNotePageExporter | ||
from .TestSimpleExportMiddlewareFactory import TestSimpleExportMiddlewareFactory |
2 changes: 1 addition & 1 deletion
2
...bing/TestDateDigitsSubstitutionFactory.py → ...bing/TestDateDigitsSubstitutionFactory.py
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
2 changes: 1 addition & 1 deletion
2
path_scrubbing/TestPathComponentScrubber.py → ...th_scrubbing/TestPathComponentScrubber.py
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
2 changes: 1 addition & 1 deletion
2
...bing/TestTimeDigitsSubstitutionFactory.py → ...bing/TestTimeDigitsSubstitutionFactory.py
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,3 @@ | ||
from .TestDateDigitsSubstitutionFactory import TestDateDigitsSubstitutionFactory | ||
from .TestPathComponentScrubber import TestPathComponentScrubber | ||
from .TestTimeDigitsSubstitutionFactory import TestTimeDigitsSubstitutionFactory |