Add tests with 'vim-flavor'

This commit is contained in:
raimon
2015-11-29 00:05:47 +09:00
parent c260a9f18b
commit 0fa1ba8b7b
9 changed files with 95 additions and 2 deletions

11
Rakefile Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env rake
task :ci => [:dump, :test]
task :dump do
sh 'vim --version'
end
task :test do
sh 'bundle exec vim-flavor test'
end