HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-3.0.2/spec/ruby/core/dir/initialize_spec.rb
require_relative '../../spec_helper'
require_relative 'fixtures/common'

describe "Dir#initialize" do
  before :each do
    DirSpecs.create_mock_dirs
  end

  after :each do
    DirSpecs.delete_mock_dirs
  end

  it "calls #to_path on non-String arguments" do
    p = mock('path')
    p.stub!(:to_path).and_return(DirSpecs.mock_dir)
    dir = Dir.new(p)
    begin
      dir.path.should == DirSpecs.mock_dir
    ensure
      dir.close
    end
  end
end