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 #774 from kachick/update_tags-kernel-respond_to
Untag passing Kernel#respond_to? specs
- Loading branch information
Showing
with
0 additions
and 2 deletions.
@@ -1,7 +1,5 @@ | ||
fails:Kernel#respond_to? returns false if the given method was undefined | ||
fails:Kernel#respond_to? returns true if obj responds to the given protected method | ||
fails:Kernel#respond_to? returns false if obj responds to the given private method | ||
fails:Kernel#respond_to? returns false even if obj responds to the given private method (include_private = false) | ||
fails:Kernel#respond_to? returns true if obj responds to the given private method (include_private = true) | ||
fails:Kernel#respond_to? does not change method visibility when finding private method | ||
fails:Kernel#respond_to? throws a type error if argument can't be coerced into a Symbol |