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
" Running Tests... | |
" See also <https://gist.github.com/8114940> | |
" Run currently open RSpec test file | |
map <Leader>rf :w<cr>:!rspec % --format nested<cr> | |
" Run current RSpec test | |
" RSpec is clever enough to work out test to run if cursor is on any line within the test | |
map <Leader>rl :w<cr>:exe "!rspec %" . ":" . line(".")<cr> |