1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:50:04 +08:00
SpaceVim/bundle/vim-matchup/test/vader/ruby.vader
2020-06-13 14:06:35 +08:00

41 lines
650 B
Plaintext

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>')
Given ruby (Ruby do end):
context 'webhooks' do
before { allow_any_instance_of(described_class).to receive(:webhook_endpoint_active?).and_return(true) }
it 'runs webhooks' do
expect(Webhook::Runner).to receive(:deliver)
subject
end
end
Do (Motion %):
go2W
%
Then (Verify):
AssertEqual 'end', getline('.')
Do (Motion %):
2ggee
%
%
Then (Verify):
AssertEqual '{', getline('.')[col('.')-1]