We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JRuby exposes more parts of File as public instance methods than MRI does.
File
These two are made public in JRuby:
Assumptions in FakeFS about that makes its asserts not pass. Update: FakeFS v0.10.0 changed it assumptions.
Other relevant info you may wish to add:
File.instance_methods should exclude ttymode and ttymode_yield.
File.instance_methods
ttymode
ttymode_yield
The test results in https://travis-ci.org/fakefs/fakefs/jobs/174750880 should not fail on ttymode_yield and ttymode
The text was updated successfully, but these errors were encountered:
Spec: exclude a few public methods on File for JRuby
9026d6c
- see jruby/jruby#4275
7274ccb
Thank you, @kares!
Sorry, something went wrong.
No branches or pull requests
JRuby exposes more parts of
File
as public instance methods than MRI does.These two are made public in JRuby:
Assumptions in FakeFS about that makes its asserts not pass. Update: FakeFS v0.10.0 changed it assumptions.
Environment
Other relevant info you may wish to add:
Expected Behavior
File.instance_methods
should excludettymode
andttymode_yield
.The test results in https://travis-ci.org/fakefs/fakefs/jobs/174750880 should not fail on
ttymode_yield
andttymode
File.instance_methods
Actual Behavior
ttymode
andttymode_yield
as public onFile
The text was updated successfully, but these errors were encountered: