Merge pull request #12 from chef/russellseymour/relative-libs

Updated how internal libraries are located
This commit is contained in:
Russell Seymour 2017-02-22 15:57:57 +00:00 committed by GitHub
commit 86a442985e
4 changed files with 7 additions and 7 deletions

View file

@ -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 # Class to test the resources in Resource Groups
# #

View file

@ -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 # Class to retrieve information about the specified virtual machine
# #

View file

@ -1,5 +1,5 @@
require_relative 'common/helpers' require File.expand_path(File.dirname(__FILE__) + '/common/helpers')
require 'uri' require 'uri'
# Class to test the data disks that are attached to the specified VM # Class to test the data disks that are attached to the specified VM

View file

@ -1,9 +1,9 @@
require_relative '../azure_conn' require File.expand_path(File.dirname(__FILE__) + '/../azure_conn')
require_relative 'resource_management' require File.expand_path(File.dirname(__FILE__) + '/resource_management')
require_relative 'compute_management' require File.expand_path(File.dirname(__FILE__) + '/compute_management')
require_relative 'network_management' require File.expand_path(File.dirname(__FILE__) + '/network_management')
# Helper class to configure and give access to the various management components of Azure # 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 # Also provides shortcuts for certain components, such as returing the VM object and performing