Sha256: 74477ae9c69ecd32e96bd031d6a9ef8934de4a7961f681eef7840f7febaf3bf2

Contents?: true

Size: 641 Bytes

Versions: 10

Compression:

Stored size: 641 Bytes

Contents

require 'vfs/drivers/local'
require 'vfs/drivers/specification'

describe Vfs::Drivers::Local do
  with_tmp_spec_dir

  before do
    @driver = Vfs::Drivers::Local.new root: spec_dir
    @driver.open
  end

  after do
    @driver.close
  end

  it_should_behave_like 'vfs driver basic'
  it_should_behave_like 'vfs driver attributes basic'
  it_should_behave_like 'vfs driver files'
  it_should_behave_like 'vfs driver full attributes for files'
  it_should_behave_like 'vfs driver dirs'
  it_should_behave_like 'vfs driver full attributes for dirs'
  it_should_behave_like 'vfs driver query'
  it_should_behave_like 'vfs driver tmp dir'
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
vfs-momolog-0.0.1 spec/storages/local_spec.rb
vfs-0.4.8 spec/storages/local_spec.rb
vfs-0.4.7 spec/storages/local_spec.rb
vfs-0.4.6 spec/storages/local_spec.rb
vfs-0.4.5 spec/storages/local_spec.rb
vfs-0.4.4 spec/storages/local_spec.rb
vfs-0.4.3 spec/storages/local_spec.rb
vfs-0.4.2 spec/storages/local_spec.rb
vfs-0.4.1 spec/storages/local_spec.rb
vfs-0.4.0 spec/storages/local_spec.rb