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

[ibm] Make names used in tests unique using current time

This commit is contained in:
Decklin Foster 2012-02-20 13:14:02 -05:00
parent ed816e9233
commit 5620ac760f
7 changed files with 10 additions and 9 deletions

View file

@ -31,7 +31,7 @@ Shindo.tests('Fog::Storage[:ibm] | volume requests', ['ibm']) do
tests('success') do
@volume_id = nil
@name = "fog test volume"
@name = "fog-test-volume" + Time.now.to_i.to_s(32)
@format = "raw"
@location_id = "101"
@size = "256"
@ -59,7 +59,7 @@ Shindo.tests('Fog::Storage[:ibm] | volume requests', ['ibm']) do
tests("#attach_volume('#{@instance_id}','#{@volume_id}')") do
@instance_id = Fog::Compute[:ibm].create_instance(
"fog test volume instance",
'fog-test-volume-instance-' + Time.now.to_i.to_s(32),
@image_id,
@instance_type,
@location,