Sha256: da9fa7eeaba4767fde4b8e7c46640b585d44df82fa5bb0ae45a3725eb3169664

Contents?: true

Size: 635 Bytes

Versions: 1

Compression:

Stored size: 635 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 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

1 entries across 1 versions & 1 rubygems

Version Path
io-0.0.1 spec/storages/local_spec.rb