Skip to content

Commit a6c9d4c

Browse files
committed
Add vim-vspec test
1 parent 9d8864c commit a6c9d4c

File tree

5 files changed

+972
-1
lines changed

5 files changed

+972
-1
lines changed

Diff for: .gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
doc/tags
2-
ignore/
32
tmp*
3+
*.lock
4+
.vim-flavor

Diff for: .travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: ruby
2+
rvm:
3+
- 2.0.0
4+
script:
5+
- rake ci
6+
install:
7+
- git clone https://github.com/kana/vim-vspec.git
8+
- git clone https://github.com/tpope/vim-repeat.git

Diff for: Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'vim-flavor', '~> 1.1'

Diff for: Rakefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env rake
2+
3+
task :ci => [:dump, :test]
4+
5+
task :dump do
6+
sh 'vim --version'
7+
end
8+
9+
task :test do
10+
sh 'bundle exec vim-flavor test'
11+
end

0 commit comments

Comments
 (0)