Add NotImplementedErrors for missing methods on File for ruby 1.9.1
This commit is contained in:
parent
f30beb33fe
commit
fc7515fd08
@ -279,6 +279,24 @@ module FakeFS
|
|||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if RUBY_VERSION.to_f >= 1.9
|
||||||
|
def binmode?
|
||||||
|
raise NotImplementedError
|
||||||
|
end
|
||||||
|
|
||||||
|
def close_on_exec=(bool)
|
||||||
|
raise NotImplementedError
|
||||||
|
end
|
||||||
|
|
||||||
|
def close_on_exec?
|
||||||
|
raise NotImplementedError
|
||||||
|
end
|
||||||
|
|
||||||
|
def to_path
|
||||||
|
raise NotImplementedError
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def check_modes!
|
def check_modes!
|
||||||
|
Loading…
Reference in New Issue
Block a user