Skip to content
New issue

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

Fix CollectionDecorator#respond_to? for non AR collections #920

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

catks
Copy link

@catks catks commented May 18, 2022

Description

Draper::Collection#respond_to? does not work properly when using a non AR object, eg:

class FooDecorator < Draper::Decorator; end  

decorator_collection = FooDecorator.decorate_collection([Object.new])
decorator_collection.respond_to?(:limit) #=> true
decorator_collection.limit(10) # Raises NoMethodError: undefined method `limit' for []:Array   

I think decorator_collection.respond_to?(:limit) should return false for these cases

Testing

  1. Create a empty decorator with: class FooDecorator < Draper::Decorator; end
  2. Initialize a non AR collection with it: decorator_collection = FooDecorator.decorate_collection([Object.new])
  3. decorator_collection.respond_to?(:limit) should return false

To-Dos

  • tests
  • documentation

References

@catks catks marked this pull request as ready for review May 18, 2022 15:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant