blob: 938a9a7fe98412d9b6496605be7e1f6cc8114f4d (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | require 'vimrunner'
require 'vimrunner/rspec'
$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).
  config.reuse_server = !ENV['REUSE_SERVER'].nil?
  # 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
    vim.add_plugin($plugin_path)
    # The returned value is the Client available in the tests.
    vim
  end
end
 |