diff --git a/rack-protection/lib/rack/protection.rb b/rack-protection/lib/rack/protection.rb index 089b2c28..eb7c8ff6 100644 --- a/rack-protection/lib/rack/protection.rb +++ b/rack-protection/lib/rack/protection.rb @@ -3,7 +3,6 @@ require 'rack' module Rack module Protection - autoload :AccessControl, 'rack/protection/access_control' autoload :AuthenticityToken, 'rack/protection/authenticity_token' autoload :Base, 'rack/protection/base' autoload :EscapedParams, 'rack/protection/escaped_params' diff --git a/rack-protection/spec/access_control_spec.rb b/rack-protection/spec/access_control_spec.rb deleted file mode 100644 index 818b45d8..00000000 --- a/rack-protection/spec/access_control_spec.rb +++ /dev/null @@ -1,5 +0,0 @@ -require File.expand_path('../spec_helper.rb', __FILE__) - -describe Rack::Protection::AccessControl do - it_behaves_like "any rack application" -end