Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hojberg/vest

Simple vim test runner
https://github.com/hojberg/vest

Last synced: 29 days ago
JSON representation

Simple vim test runner

Awesome Lists containing this project

README

        

# Vest

Simple vim test runner

## install with pathogen

```
git submodule add [email protected]:hojberg/vest.git bundle/vest
git submodule init
```

## Setup patterns and runners

```VimL
let g:vest_runners = {
\ '_spec.rb': 'bundle exec rspec %',
\ '.feature': 'bundle exec rake cucumber FEATURE=%'
\ }
```

## Setup mapping:
```VimL
nnoremap t :Vest
```