vim-polyglot/spec/spec_helper.rb

23 lines
643 B
Ruby
Raw Normal View History

require 'vimrunner'
require 'vimrunner/rspec'
2013-09-14 14:42:27 -04:00
$plugin_path = File.expand_path('../..', __FILE__)
Vimrunner::RSpec.configure do |config|
# Use a single Vim instance for the test suite. Set to false to use an
# instance per test (slower, but can be easier to manage).
2013-12-27 10:40:01 -05:00
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
# Setup your plugin in the Vim instance
2013-09-14 14:42:27 -04:00
vim.add_plugin($plugin_path)
# The returned value is the Client available in the tests.
vim
end
end