Sha256: ee3c7c674034c42f41c79f3c291f7b5064474d0011266d7c6b9c3d12114f2f7c
Contents?: true
Size: 606 Bytes
Versions: 52
Compression:
Stored size: 606 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/common', __FILE__) ruby_version_is "1.8.7" do describe "Dir#inspect" do before :all do DirSpecs.create_mock_dirs end after :all do DirSpecs.delete_mock_dirs end it "returns a String" do Dir.new(Dir.getwd).inspect.should be_an_instance_of(String) end it "includes the class name" do Dir.new(Dir.getwd).inspect.should =~ /Dir/ end it "includes the directory name" do Dir.new(Dir.getwd).inspect.should include(Dir.getwd) end end end
Version data entries
52 entries across 52 versions & 2 rubygems