renaming skip_authorization to skip_authorization_check - closes #169

This commit is contained in:
Ryan Bates
2010-11-12 10:46:03 -08:00
parent 92995d791e
commit 787511a208
2 changed files with 10 additions and 6 deletions

View File

@@ -54,9 +54,9 @@ describe CanCan::ControllerAdditions do
@controller_class.load_resource :foo => :bar, :only => [:show, :index]
end
it "skip_authorization should set up a before filter which sets @_authorized to true" do
it "skip_authorization_check should set up a before filter which sets @_authorized to true" do
mock(@controller_class).before_filter(:filter_options) { |options, block| block.call(@controller) }
@controller_class.skip_authorization(:filter_options)
@controller_class.skip_authorization_check(:filter_options)
@controller.instance_variable_get(:@_authorized).should be_true
end