Merge branch 'feature-midmap'

This commit is contained in:
Andy K. Massimino
2019-08-02 19:07:33 -04:00
5 changed files with 102 additions and 4 deletions

8
test/lang/ruby/next.rb Normal file
View File

@@ -0,0 +1,8 @@
for i in 0..5
if i < 2 then
next
else
end
puts "Value of local variable is #{i}"
end

15
test/vader/ruby.vader Normal file
View File

@@ -0,0 +1,15 @@
Given ruby (Ruby for if):
for i in 0..5
if i < 2 then
next
end
puts "Value of local variable is #{i}"
end
Do (Motion %):
go
%
Then (Verify):
AssertEqual 'next', expand('<cword>')