1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

rename slices in slicehost specs to avoid conflicts

This commit is contained in:
Wesley Beary 2010-01-04 21:45:37 -08:00
parent 124394b1bc
commit cf0257a596
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ describe 'Slicehost.create_slice' do
it "should return proper attributes" do
# flavor_id 1: 256 ram, image_id 3: Gentoo 2008.0
actual = slicehost.create_slice(1, 3, 'fogslice').body
actual = slicehost.create_slice(1, 3, 'fog_create_slice').body
actual['addresses'].should be_a(Array)
# actual['backup-id'].should be_an(Integer)
actual['bw-in'].should be_an(Float)

View file

@ -5,7 +5,7 @@ describe 'Slicehost.delete_slice' do
before(:each) do
# flavor_id 1: 256 ram, image_id 3: Gentoo 2008.0
@slice_id = slicehost.create_slice(1, 3, 'fog_slice').body['id']
@slice_id = slicehost.create_slice(1, 3, 'fog_delete_slice').body['id']
end
it "should return proper attributes" do