class BarAbility
Fake ability for testing administration
Public Class Methods
new(user)
click to toggle source
# File lib/spree/testing_support/bar_ability.rb, line 5 def initialize(user) user ||= Spree::User.new if user.has_spree_role? 'bar' # allow dispatch to :admin, :index, and :show on Spree::Order can [:admin, :index, :show], Spree::Order # allow dispatch to :index, :show, :create and :update shipments on the admin can [:admin, :manage], Spree::Shipment end end