mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
14 lines
325 B
Ruby
14 lines
325 B
Ruby
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
require File.dirname(__FILE__) + '/../../shared_examples/flavors_examples'
|
|
|
|
describe 'Fog::AWS::Slicehost::Flavors' do
|
|
|
|
it_should_behave_like "Flavors"
|
|
|
|
subject { @flavor = @flavors.all.first }
|
|
|
|
before(:each) do
|
|
@flavors = Slicehost[:slices].flavors
|
|
end
|
|
|
|
end
|