mirror of
https://github.com/inspec/inspec
synced 2024-11-24 13:43:09 +00:00
Merge pull request #12 from chef/russellseymour/relative-libs
Updated how internal libraries are located
This commit is contained in:
commit
86a442985e
4 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
|
||||
require_relative 'common/helpers'
|
||||
require File.expand_path(File.dirname(__FILE__) + '/common/helpers')
|
||||
|
||||
# Class to test the resources in Resource Groups
|
||||
#
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
require_relative 'common/helpers'
|
||||
require File.expand_path(File.dirname(__FILE__) + '/common/helpers')
|
||||
|
||||
# Class to retrieve information about the specified virtual machine
|
||||
#
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
require_relative 'common/helpers'
|
||||
require File.expand_path(File.dirname(__FILE__) + '/common/helpers')
|
||||
require 'uri'
|
||||
|
||||
# Class to test the data disks that are attached to the specified VM
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
|
||||
require_relative '../azure_conn'
|
||||
require File.expand_path(File.dirname(__FILE__) + '/../azure_conn')
|
||||
|
||||
require_relative 'resource_management'
|
||||
require_relative 'compute_management'
|
||||
require_relative 'network_management'
|
||||
require File.expand_path(File.dirname(__FILE__) + '/resource_management')
|
||||
require File.expand_path(File.dirname(__FILE__) + '/compute_management')
|
||||
require File.expand_path(File.dirname(__FILE__) + '/network_management')
|
||||
|
||||
# Helper class to configure and give access to the various management components of Azure
|
||||
# Also provides shortcuts for certain components, such as returing the VM object and performing
|
||||
|
|
Loading…
Reference in a new issue