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/rackspace_spec.rb
Paul Thornthwaite 909cb31571 Reinstate Rackspace "bin" checks
Following v1.25.0, Rackspace support was extracted into a module however
it broke support to the original fog API.

The Rackspace module is currently disabled until a few key files are
replaced.

This adds tests that worked against v1.25.0 that checks that `rackspace`
is registered correctly. See https://github.com/fog/fog/pull/3326

This reverts commit 9717002fd3.
2014-12-10 11:11:40 +00:00

10 lines
162 B
Ruby

require "minitest/autorun"
require "fog"
require "fog/bin"
require "helpers/bin"
describe Rackspace do
include Fog::BinSpec
let(:subject) { Rackspace }
end