Skip to content

Instantly share code, notes, and snippets.

@rocknrollMarc
Created January 10, 2014 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rocknrollMarc/8364305 to your computer and use it in GitHub Desktop.
Save rocknrollMarc/8364305 to your computer and use it in GitHub Desktop.
" Vim functions to run RSpec and Cucumber on the current file and optionally on
" the spec/scenario under the cursor.
function! RailsScriptIfExists(name)
" Bundle exec
if isdirectory(".bundle") || (exists("b:rails_root") && isdirectory(b:rails_root . "/.bundle"))
return "bundle exec " . a:name
" System Binary
else
return a:name
end
endfunction
function! RunSpec(args)
let spec = RailsScriptIfExists("rspec --drb")
let cmd = spec . " " . a:args . " -fn -c " . @%
execute ":! echo " . cmd . " && " . cmd
endfunction
function! RunCucumber(args)
let cucumber = RailsScriptIfExists("cucumber --drb")
let cmd = cucumber . " " . @% . a:args
execute ":! echo " . cmd . " && " . cmd
endfunction
function! RunTestFile(args)
if @% =~ "\.feature$"
call RunCucumber("" . a:args)
elseif @% =~ "\.rb$"
call RunSpec("" . a:args)
end
endfunction
function! RunTest(args)
if @% =~ "\.feature$"
call RunCucumber(":" . line('.') . a:args)
elseif @% =~ "\.rb$"
call RunSpec("-l " . line('.') . a:args)
end
endfunction
map <Leader>; :call RunTest("")<CR>
map <Leader>' :call RunTestFile("")<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment