How can I test CanCan in the console?

You need to setup Ability object:

ability = Ability.new(current_user_object)

Now you check authorization:

ability.can? :read, object_to_be_checked

current_user_object: User object for which you want to check authorization

object_to_be_checked: is object on which you want to check authorization

Leave a Comment