mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
workaround autoload mismatch with renested AWS class/module names
This commit is contained in:
parent
ad5719b5ef
commit
a1138f0c18
1 changed files with 7 additions and 1 deletions
|
@ -2,6 +2,12 @@ require "spec_helper"
|
|||
require "fog/bin"
|
||||
require "helpers/bin"
|
||||
|
||||
# workaround autoload which doesn't match renested/deprecated classes
|
||||
require "fog/aws/cdn"
|
||||
require "fog/aws/compute"
|
||||
require "fog/aws/dns"
|
||||
require "fog/aws/storage"
|
||||
|
||||
describe AWS do
|
||||
include Fog::BinSpec
|
||||
|
||||
|
@ -10,7 +16,7 @@ describe AWS do
|
|||
KEY_CLASS_MAPPING = {
|
||||
:auto_scaling => Fog::AWS::AutoScaling,
|
||||
:beanstalk => Fog::AWS::ElasticBeanstalk,
|
||||
:cdn => Fog::AWS::CDN,
|
||||
:cdn => Fog::CDN::AWS,
|
||||
:cloud_formation => Fog::AWS::CloudFormation,
|
||||
:cloud_watch => Fog::AWS::CloudWatch,
|
||||
:compute => Fog::Compute::AWS,
|
||||
|
|
Loading…
Reference in a new issue