Test Switcher
A Sublime Text extension to move between source and test files easily.
Details
Installs
- Total 135
- Win 37
- Mac 68
- Linux 30
Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Test Switcher for Sublime Text
© 2017 David Reed, distributed under the MIT License.
This plugin provides a configurable way to swap between source files and corresponding test classes in Sublime Text 3. Invoke it while viewing a source file to tab to the corresponding test file, or vice versa, by choosing Test Switcher from the command palette or pressing Control-Shift-Insert (Linux and Windows) or Command-Shift-\ (Mac). Test Switcher scans open tabs first for matching files and then walks the directory tree for your open folders.
The plugin can be configured to find tests using many different naming conventions. It matches on basename (file name minus extension) as well as on extension. To configure basename matching, in the plugin's settings, supply a list for prefixes
and suffixes
. These will be added to the source file base name to locate possible test class files, and will be matched against the head and tail of open files to locate the source files corresponding to tests. The default configuration looks for prefixes ["test", "test_"]
and suffixes ["test", "_test", ".spec"]
. Hence, a source file named Base.py
would match to a test file named TestBase.py
, Test_Base.py
, Base_test.py
, BaseTest.py
, or Base.spec.py
, and vice versa. Note that matching is case-insensitive on all platforms.
You may also, if you choose, supply test_extensions
and source_extensions
. If present, only test and source files who match according to the defined name rubric and possess an extension in the relevant list will be offered as an option. If the lists are blank or empty, extensions are ignored.