aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/dir/inspect_spec.rb
blob: 01bde8a8624928fe42fcf094d0524dffa92a4e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/common', __FILE__)

describe "Dir#inspect" do
  before :each do
    @dir = Dir.new(Dir.getwd)
  end

  after :each do
    @dir.close
  end

  it "returns a String" do
    @dir.inspect.should be_an_instance_of(String)
  end

  it "includes the class name" do
    @dir.inspect.should =~ /Dir/
  end

  it "includes the directory name" do
    @dir.inspect.should include(Dir.getwd)
  end
end