blob: cfe5a51638542c485a50e966463d33f3110dd0e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
require 'vimrunner'
require 'vimrunner/rspec'
Vimrunner::RSpec.configure do |config|
# Set to false to use an instance per test (slower, but can be easier
# to manage).
config.reuse_server = false
# Decide how to start a Vim instance. In this block, an instance should be
# spawned and set up with anything project-specific.
config.start_vim do
vim = Vimrunner.start
# Load the plugin
plugin_path = File.expand_path('../..', __FILE__)
vim.add_plugin(plugin_path, 'plugin/novim_mode.vim')
# The returned value is the Client available in the tests.
vim
end
end
RSpec.configure do |config|
config.before :each do
# Default to setting the filetype to shell to enable
# code-like behaviour.
@ext = 'sh'
end
end
def write_file_content(string, ext = 'sh')
@file = "file.#{ext}"
string = normalize_string_indent(string)
File.open(@file, 'w') { |f| f.write(string) }
vim.edit @file
end
def load_file_content
vim.write
IO.read(@file).strip
end
def type(string)
string.scan(/<.*?>|./).each do |key|
if key =~ /<.*>/
vim.feedkeys "\\#{key}"
else
vim.feedkeys key
end
end
end
def initial(string)
@vim_options.each { |x| vim.command(x) } if @vim_options
write_file_content(string, @ext)
end
def final(string)
expected = normalize_string_indent(string)
expect(load_file_content).to eq expected
end
def use_extension(ext)
@ext = ext
end
|