summaryrefslogtreecommitdiff
path: root/spec/ruby/core/dir/inspect_spec.rb
blob: 37338a97d4f25e46ab2f9158cce982ab9e56eb3e (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_relative '../../spec_helper'
require_relative 'fixtures/common'

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