Navigate between a test and test subject
In RubyMine, you can quickly navigate between a test and the test subject.
Open a test class in the editor.
From the main menu or the editor context menu, select Navigate | Test Subject. Alternatively, press .
The test subject for the current test class opens in the dedicated tab of the editor and gets the focus.
Open class in the editor. If you want to navigate from a method to its test, position the caret at this method.
From the main menu, choose Navigate | Test. Alternatively, press .
If more than one test is associated with the test subject, select the desired one from the list. The test for the current class opens in the dedicated tab of the editor and gets the focus.
If a test doesn't exist, you will be prompted to create one as described in Create a test when navigating to it.
note
If RubyMine doesn't open an existing test, make sure that the directory where your tests are stored is marked as a Test Sources Root.
warning
You cannot navigate between a test and its subject if you rename the test method.