You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix test target code of module_function (ruby#1316)
The test target code was wrong. `module_function` is only available
inside module, not inside class.
`module_function` is `undef`ed in Class.
```ruby
Class.undefined_instance_methods
=> [:prepend_features, :extend_object, :refine, :module_function, :append_features]
```
0 commit comments