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