test/api_stub.rb in fog-azure-rm-0.0.8 vs test/api_stub.rb in fog-azure-rm-0.0.9

- old
+ new

@@ -47,10 +47,15 @@ module DNS autoload :Zone, File.expand_path('api_stub/models/dns/zone', __dir__) autoload :RecordSet, File.expand_path('api_stub/models/dns/record_set', __dir__) end + + module Sql + autoload :SqlServer, File.expand_path('api_stub/models/sql/sql_server', __dir__) + autoload :SqlDatabase, File.expand_path('api_stub/models/sql/sql_database', __dir__) + end end module Requests module Compute autoload :AvailabilitySet, File.expand_path('api_stub/requests/compute/availability_set', __dir__) @@ -97,8 +102,13 @@ end module DNS autoload :Zone, File.expand_path('api_stub/requests/dns/zone', __dir__) autoload :RecordSet, File.expand_path('api_stub/requests/dns/record_set', __dir__) + end + + module Sql + autoload :SqlServer, File.expand_path('api_stub/requests/sql/sql_server', __dir__) + autoload :SqlDatabase, File.expand_path('api_stub/requests/sql/database', __dir__) end end end