Sha256: e6dfb7782df65332a701c1ca35196c0c7af0789097649200b174372cbcce8fe6

Contents?: true

Size: 739 Bytes

Versions: 96

Compression:

Stored size: 739 Bytes

Contents

Shindo.tests("Storage[:atmos] | nested directories", ['atmos']) do
  atmos = Fog::Storage[:atmos]
  tests("create a directory with a / character").succeeds do
    pending if Fog.mocking?
    atmos.directories.create(:key => 'sub/path')
  end

  tests("List of top directory returns sub dir").returns(1) do
    pending if Fog.mocking?
    atmos.directories.get('sub').directories.count
  end

  tests("create a directory in a sub dir").returns('sub/path/newdir/') do
    pending if Fog.mocking?
    atmos.directories.get('sub/path').directories.create(:key => 'newdir').identity
  end

  tests("Recursively destroy parent dir").succeeds do
    pending if Fog.mocking?
    atmos.directories.get('sub').destroy(:recursive => true)
  end

end

Version data entries

96 entries across 94 versions & 15 rubygems

Version Path
fog-maestrodev-1.18.0.20131209091424 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131209090811 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131206115947 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/atmos/models/storage/nested_directories_tests.rb
gapinc-fog-1.12.1.2.1 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/atmos/models/storage/nested_directories_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/atmos/models/storage/nested_directories_tests.rb
fog-1.18.0 tests/atmos/models/storage/nested_directories_tests.rb
fog-1.17.0 tests/atmos/models/storage/nested_directories_tests.rb