Sha256: 2c51c5bf7594cd257614adf7311e9d785127aef134cbe9fdb0c67d3a641f8188

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 KB

Contents

require "tmpdir"

module IntegrationSupport
  def when_plugins_directory(description, &block)
    context "When the plugins directory #{description}" do

      before(:each) do
        @plugins_directory = Dir.mktmpdir("ohai-plugins")
      end

      after(:each) do
        if @plugins_directory
          begin
            FileUtils.remove_entry_secure(@plugins_directory)
          ensure
            @plugins_directory = nil
          end
        end
      end

      def with_plugin(plugin_path, contents) # rubocop:disable Lint/NestedMethodDefinition
        filename = path_to(plugin_path)
        dir = File.dirname(filename)
        FileUtils.mkdir_p(dir) unless dir == "."
        File.open(filename, "w") do |file|
          file.write(contents)
        end
      end

      def path_to(plugin_path) # rubocop:disable Lint/NestedMethodDefinition
        File.expand_path(plugin_path, @plugins_directory)
      end

      def self.with_plugin(plugin_path, contents) # rubocop:disable Lint/NestedMethodDefinition
        before :each do
          with_plugin(plugin_path, contents)
        end
      end

      instance_eval(&block)
    end
  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ohai-8.26.1 spec/support/integration_helper.rb
ohai-8.26.0 spec/support/integration_helper.rb
ohai-8.25.1 spec/support/integration_helper.rb
ohai-8.25.0 spec/support/integration_helper.rb
ohai-8.24.1 spec/support/integration_helper.rb
ohai-8.24.0 spec/support/integration_helper.rb
ohai-8.23.0 spec/support/integration_helper.rb
ohai-8.22.1 spec/support/integration_helper.rb
ohai-8.22.0 spec/support/integration_helper.rb
ohai-8.21.0 spec/support/integration_helper.rb
ohai-8.20.0 spec/support/integration_helper.rb