Project

General

Profile

Actions

Backport #5909

closed

File.expand_path cases has no specs for some cases in Windows

Added by funny_falcon (Yura Sokolov) about 12 years ago. Updated about 12 years ago.

Status:
Closed
[ruby-core:42177]

Description

Following cases in file_expand_path has no tests.

http://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/34215/entry/file.c#L2926

irb(main):014:0> Dir.pwd
=> "C:/Ruby193/bin"
irb(main):015:0> File.expand_path('C:asdf', 'D:\home')
=> "C:/Ruby193/bin/asdf"
irb(main):016:0> File.expand_path('C:asdf', 'C:\home')
=> "C:/home/asdf"

http://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/34215/entry/file.c#L2969

irb(main):019:0> Dir.pwd
=> "C:/Ruby193/bin"
irb(main):020:0> File.expand_path('\asdf')
=> "C:/asdf"
irb(main):021:0> File.expand_path('\asdf', 'D:\home')
=> "D:/asdf"

This specs are desirable for testing experimental version of File.expand_path , which uses Windows API
(fenix by Luis Lavena)

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0