Sha256: 7fa059a55a4756668a5527c22fb17680e1abb7dc11318d0c45f278f7a10173f2
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
require 'spec_helper' describe MultiSync::LocalTarget do before do FileUtils.mkdir_p('tmp/local-target') File.open('tmp/local-target/foo.txt', File::CREAT | File::RDWR) do |f| f.write('foo') end File.open('tmp/local-target/bar.txt', File::CREAT | File::RDWR) do |f| f.write('bar') end FileUtils.mkdir_p('tmp/local-target/in-a-dir') File.open('tmp/local-target/in-a-dir/baz.html', File::CREAT | File::RDWR) do |f| f.write('baz') end end describe :files do context :local do let(:target) { MultiSync::LocalTarget.new( target_dir: 'tmp', destination_dir: 'local-target', credentials: { local_root: 'tmp' } ) } it 'should find files' do expect(target.files).to have(3).files end context :with_root do it 'should return files with the root' do expect(target.files[0].path_with_root.to_s).to eq 'tmp/local-target/bar.txt' end end context :without_root do it 'should return files without the root' do expect(target.files[0].path_without_root.to_s).to eq 'bar.txt' end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
multi_sync-0.0.4 | spec/unit/multi_sync/targets/local_target_spec.rb |
multi_sync-0.0.3 | spec/unit/multi_sync/targets/local_target_spec.rb |