summaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-05-31 23:42:04 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-05-31 23:42:04 +0200
commit62f004c3da465152e85c2e95f6b21076f2708b6b (patch)
treebc58959730ed8f087e930acdaebeac597a959c6d /spec/spec_helper.rb
parentc73ea49ecb3a8e0cde152ce6c8155bbd73c4378d (diff)
downloadvim-polyglot-62f004c3da465152e85c2e95f6b21076f2708b6b.tar.gz
vim-polyglot-62f004c3da465152e85c2e95f6b21076f2708b6b.zip
Update travis script
Diffstat (limited to 'spec/spec_helper.rb')
-rwxr-xr-xspec/spec_helper.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
deleted file mode 100755
index 21ab43cc..00000000
--- a/spec/spec_helper.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require 'vimrunner'
-require 'vimrunner/rspec'
-
-$plugin_path = File.expand_path('../..', __FILE__)
-
-Vimrunner::RSpec.configure do |config|
- 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
- vim.add_plugin($plugin_path)
-
- # The returned value is the Client available in the tests.
- vim
- end
-end