2011-07-21 11:16:31 -04:00
|
|
|
Shindo.tests("Storage[:ninefold] | nested directories", ['ninefold']) do
|
|
|
|
ninefold = Fog::Storage[:ninefold]
|
|
|
|
tests("create a directory with a / character").succeeds do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
ninefold.directories.create(:key => 'sub/path')
|
|
|
|
end
|
2011-07-09 02:55:55 -04:00
|
|
|
|
2011-07-21 11:16:31 -04:00
|
|
|
tests("List of top directory returns sub dir").returns(1) do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
ninefold.directories.get('sub').directories.count
|
|
|
|
end
|
2011-07-09 02:55:55 -04:00
|
|
|
|
2011-07-21 11:16:31 -04:00
|
|
|
tests("create a directory in a sub dir").returns('sub/path/newdir/') do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
ninefold.directories.get('sub/path').directories.create(:key => 'newdir').identity
|
|
|
|
end
|
2011-07-09 02:55:55 -04:00
|
|
|
|
2011-07-21 11:16:31 -04:00
|
|
|
tests("Recursively destroy parent dir").succeeds do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
ninefold.directories.get('sub').destroy(:recursive => true)
|
2011-07-09 02:55:55 -04:00
|
|
|
end
|
2011-07-21 11:16:31 -04:00
|
|
|
|
|
|
|
end
|