1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Fix Joyent service declarations

When the Joyent provider was merged in it was after a reworking of how
requires and services were declared.

This meant the call to `service` was no longer correct.

This updates the signature and the mocked tests now pass (locally at
least) however the structuring and placement of the files may not be
inconsistent with the results of [GH-1712]
This commit is contained in:
Paul Thornthwaite 2014-02-12 09:42:49 +00:00
parent 2820975cbf
commit 527b91bf02

View file

@ -6,8 +6,8 @@ module Fog
module Joyent
extend Fog::Provider
service(:analytics, 'joyent/analytics', 'Analytics')
service(:compute, 'joyent/compute', 'Compute')
service(:analytics, 'Analytics')
service(:compute, 'Compute')
end
end