Add File#to_i (an alias for fileno)
This commit is contained in:
parent
1e685ed25e
commit
02b76af287
@ -237,9 +237,7 @@ module FakeFS
|
|||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_i
|
alias_method :to_i, :fileno
|
||||||
raise NotImplementedError
|
|
||||||
end
|
|
||||||
|
|
||||||
def to_io
|
def to_io
|
||||||
self
|
self
|
||||||
|
@ -369,6 +369,11 @@ class FakeFSTest < Test::Unit::TestCase
|
|||||||
assert_equal f, f.to_io
|
assert_equal f, f.to_io
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_File_to_i_is_alias_for_filno
|
||||||
|
f = File.open("/foo", "w")
|
||||||
|
assert_equal f.method(:to_i), f.method(:fileno)
|
||||||
|
end
|
||||||
|
|
||||||
def test_knows_symlink_files_are_files
|
def test_knows_symlink_files_are_files
|
||||||
path = '/path/to/file.txt'
|
path = '/path/to/file.txt'
|
||||||
File.open(path, 'w') do |f|
|
File.open(path, 'w') do |f|
|
||||||
|
Loading…
Reference in New Issue
Block a user