forked from maltize/sublime-text-2-ruby-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Context.sublime-menu
22 lines (22 loc) · 910 Bytes
/
Context.sublime-menu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[
{ "caption": "-" },
{
"caption": "RubyTest",
"children":
[
{ "caption": "Run single test / scenario / spec", "command": "run_single_ruby_test" },
{ "caption": "Run all tests / feature / full spec", "command": "run_all_ruby_test" },
{ "caption": "Run last test(s) / feature / spec", "command": "run_last_ruby_test" },
{ "caption": "-" },
{ "caption": "Show test panel", "command": "show_test_panel" },
{ "caption": "-" },
{ "caption": "Verify ruby syntax", "command": "verify_ruby_file" },
{ "caption": "-" },
{ "caption": "Refactoring", "children": [
{ "caption": "Extract Local Variable", "command": "ruby_extract_variable" }
]},
{ "caption": "-" },
{ "caption": "Switch Between Code and Test", "command": "switch_between_code_and_test", "args": {"split_view": false} }
]
}
]