basic tests and travis integration.

This commit is contained in:
Bailey Ling
2013-08-30 20:26:42 -04:00
parent cb774fcfd0
commit 0548aeefcb
6 changed files with 60 additions and 0 deletions

14
Rakefile Normal file
View File

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