1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/fog/bin/baremetalcloud_spec.rb
Paul Thornthwaite 706f873c53 DRY up specs with spec_helper
We require setting up MiniSpec and `fog` in each spec and this just
feels cleaner way of doing it.

Adding Coverage next and we don't want the code in EVERY spec.
2015-03-15 00:47:24 +00:00

33 lines
769 B
Ruby

require "spec_helper"
require "fog/bin"
require "helpers/bin"
describe BareMetalCloud do
include Fog::BinSpec
let(:subject) { BareMetalCloud }
describe "#services" do
it "includes all services" do
assert_includes BareMetalCloud.services, :compute
end
end
describe "#class_for" do
describe "when requesting storage service" do
it "returns correct class" do
assert_equal Fog::Compute::BareMetalCloud, BareMetalCloud.class_for(:compute)
end
end
end
describe "#[]" do
describe "when requesting compute service" do
it "returns instance" do
Fog::Compute::BareMetalCloud.stub(:new, "instance") do
assert_equal "instance", BareMetalCloud[:compute]
end
end
end
end
end