File: virtual_file_spec.rb

package info (click to toggle)
libextlib-ruby 0.9.13-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 532 kB
  • ctags: 487
  • sloc: ruby: 7,120; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helper'))

describe VirtualFile do
  it 'inherits from StringIO' do
    VirtualFile.superclass.should == StringIO
  end

  it 'has path reader' do
    @vf = VirtualFile.new("virtual", "elvenpath")

    # =~ /#{Dir::tmpdir}/ causes RegExp to fail with nested *?+ on 1.8.6
    @vf.path.should == "elvenpath"
  end

  it 'has path writer' do
    @vf = VirtualFile.new("virtual", "elvenpath")

    @vf.path = "newbase"
    @vf.path.should == "newbase"
  end
end