Sha256: 5eaf1b2368224ff905ac2c3730e26793fba9b6ebec9d72589fecc1ef259e070e
Contents?: true
Size: 502 Bytes
Versions: 11
Compression:
Stored size: 502 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
Version data entries
11 entries across 11 versions & 2 rubygems