mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
909cb31571
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
.
10 lines
162 B
Ruby
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
|