Sha256: 8f97534871637d27f0a289defaff25c2b7b2c3e04ce3f8dd3c04ba706904d626
Contents?: true
Size: 645 Bytes
Versions: 85
Compression:
Stored size: 645 Bytes
Contents
require "pathname" require "vagrant-spec/version" module Vagrant module Spec # This returns the path to the directory of plugins that help with # acceptance tests. # # @return [Pathname] def self.acceptance_plugin_path source_root.join("acceptance", "support-plugins") end # This returns the path to the root of the source tree for this library. def self.source_root @source_root ||= Pathname.new(File.expand_path('../../', __FILE__)) end end end # Only load plugin interface if running within Vagrant context if defined?(VagrantPlugins) require "vagrant-spec/vagrant-plugin/plugin" end
Version data entries
85 entries across 27 versions & 1 rubygems