Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #541 from krekoten/kernel_respond_to_missing
Implemented Kernel#respond_to_missing? (almost)
- Loading branch information
Showing
with
13 additions
and 10 deletions.
@@ -1,10 +1 @@ | ||
fails:Kernel#respond_to_missing? is called with a 2nd argument of false when #respond_to? is | ||
fails:Kernel#respond_to_missing? is called a 2nd argument of false when #respond_to? is called with only 1 argument | ||
fails:Kernel#respond_to_missing? is called with true as the second argument when #respond_to? is | ||
fails:Kernel#respond_to_missing? is called when #respond_to? would return false | ||
fails:Kernel#respond_to_missing? causes #respond_to? to return true if called and not returning false | ||
fails:Kernel#respond_to_missing? causes #respond_to? to return false if called and returning false | ||
fails:Kernel#respond_to_missing? causes #respond_to? to return false if called and returning nil | ||
fails:Kernel#respond_to_missing? is called when obj responds to the given private method, include_private = false | ||
fails:Kernel#respond_to_missing? is called for missing class methods | ||
fails:Kernel#respond_to_missing? returns true if obj responds to the given public method |