fog--fog/spec/fog/orchestration_spec.rb

15 lines
455 B
Ruby

require "spec_helper"
describe Fog::Orchestration do
Fog::Orchestration.providers.each do |provider|
describe "when #{provider} is passed with no available credentials" do
it "returns ArgumentError" do
# Stub credentials so you still see errors where the tester really has credentials
Fog.stub :credentials, {} do
assert_raises(ArgumentError) { Fog::Orchestration[provider] }
end
end
end
end
end