Skip to content
This repository has been archived by the owner on Jun 24, 2018. It is now read-only.

BjRo/vim-extest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

!!! Deprecated !!!

This plugin is deprecated. vim-test offers much more (and is what I personally use nowadays).

extest.vim

extest.vim is a vim plugin, which helps you to run tests written in the elixir language from inside vim. Currently it supports elixirs native test framework exunit as well as Amitra.

Installation

If you don't have a preferred installation method, I recommend installing pathogen.vim, and then simply copy and paste:

cd ~/.vim/bundle
git clone git://github.com/BjRo/vim-extest.git

Key Bindings

By default extest.vim doesn't bind to any keys but is available in the form of commands

  • :ExTestRunFile runs all the tests in the file that is loaded into the current buffer
  • :ExTestRunTest runs the test case under the cursor
  • :ExTestRunLast runs the last test, from any buffer
  • :ExTestRunCurrentOrLast runs test case under the cursor or the last test (from any buffer)

If you want to bind those commands to your leader keys, you can do so nevertheless. For example:

map <leader>T :ExTestRunFile<CR>
map <leader>t :ExTestRunCurrentOrLast<CR>

or:

map <leader>T :ExTestRunFile<CR>
map <leader>t :ExTestRunTest<CR>
map <leader>lt :ExTestRunLast<CR>

Customizing

You can customize the command which will be used to run each test by setting these options in your .vimrc file:

let g:extest_exunit_run_file_cmd = "mix test '%f'"
let g:extest_exunit_run_test_cmd = "mix test '%f'"
let g:extest_amrita_run_file_cmd = "mix amrita '%f'"
let g:extest_amrita_run_test_cmd = "mix amrita '%f:%l'"

Placeholders:

  • %f: path of test file
  • %l: line number

Kudos

This plugin has been heavily influenced and inspired by rubytest.vim by janx. I've used it daily when developing stuff in Ruby in the last 2 years and wouldn't want to miss it. It's awesome. Go check it out!

License

(The MIT License)

Copyright (c) 2013 Björn Rochel

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A vim plugin for running elixir tests

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •