Skip to content

Commit

Permalink
Add rake task for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Lazarev committed Dec 9, 2014
1 parent 7bffb45 commit 35be765
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Install the `vim-flavor` gem, install the dependencies and run the tests:
```
gem install vim-flavor
vim-flavor install
vim-flavor test
rake
```

Credits
Expand Down
7 changes: 7 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env rake

task :test do
sh "vim-flavor test"
end

task :default => :test

0 comments on commit 35be765

Please sign in to comment.