Sha256: f2f796b3b2ba7cb3f99f2876c696605f6d1135b8b2cdeb7d02a8eff05f91bcae
Contents?: true
Size: 994 Bytes
Versions: 52
Compression:
Stored size: 994 Bytes
Contents
module Authlogic module TestCase # Basically acts like a controller but doesn't do anything. Authlogic can interact with this, do it's thing and then you # can look at the controller object to see if anything changed. class MockController < ControllerAdapters::AbstractAdapter attr_accessor :http_user, :http_password attr_writer :request_content_type def initialize end def authenticate_with_http_basic(&block) yield http_user, http_password end def cookies @cookies ||= MockCookieJar.new end def cookie_domain nil end def logger @logger ||= MockLogger.new end def params @params ||= {} end def request @request ||= MockRequest.new(controller) end def request_content_type @request_content_type ||= "text/html" end def session @session ||= {} end end end end
Version data entries
52 entries across 52 versions & 20 rubygems