Skip to content

Instantly share code, notes, and snippets.

@dennyabraham
Forked from steveklabnik/privacy_filter.rb
Created December 12, 2011 04:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dennyabraham/1464804 to your computer and use it in GitHub Desktop.
Save dennyabraham/1464804 to your computer and use it in GitHub Desktop.
A spec for a filter
class PrivacyFilter
class << self
def filter(controller)
@controller = controller
first_article? or administrator? or user?
end
def first_article?
@controller.params[:id] == 1
end
def administrator?
@controller.authenticate_administrator!
end
def user?
@controller.authenticate_user!
end
end
end
require "app/models/privacy_filter"
describe PrivacyFilter do
let (:controller) { mock("controller", :authenticate_administrator! => nil, :authenticate_user! => nil, :params => {}) }
it "allows access to the root article" do
controller.stub!(:params => {:id => 1})
PrivacyFilter.filter(controller).should be_true
end
it "allows access for administrators" do
controller.stub!(:authenticate_administrator! => true)
PrivacyFilter.filter(controller).should be_true
end
it "allows access to users" do
controller.stub!(:authenticate_user! => true)
PrivacyFilter.filter(controller).should be_true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment