Sha256: c6805cbec8f1603ce30bea72d6ef7fd53b8a6a83a22eebd3d456f989ec2eed3a

Contents?: true

Size: 330 Bytes

Versions: 6

Compression:

Stored size: 330 Bytes

Contents

module IntegrationHelper
  def self.fixture_path
    File.expand_path("../integration/edge_gateway/data", File.dirname(__FILE__))
  end

  def self.fixture_file(path)
    File.join(self.fixture_path, path)
  end

  def self.remove_temp_config_files(files_to_delete)
    files_to_delete.each { |f|
      f.unlink
    }
  end


end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vcloud-edge_gateway-1.3.0 spec/support/integration_helper.rb
vcloud-edge_gateway-1.2.0 spec/support/integration_helper.rb
vcloud-edge_gateway-1.1.0 spec/support/integration_helper.rb
vcloud-edge_gateway-1.0.2 spec/support/integration_helper.rb
vcloud-edge_gateway-1.0.1 spec/support/integration_helper.rb
vcloud-edge_gateway-1.0.0 spec/support/integration_helper.rb