aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuo Xiang Tan <tgx_world@hotmail.com>2014-05-28 20:06:08 -0700
committerGuo Xiang Tan <tgx_world@hotmail.com>2014-05-28 20:06:08 -0700
commitb1bc553385524373cab759a64e0bb650afda6d98 (patch)
treefedb5fac8587f765d48cc2c32007bec66c95f091
parent7f73b9152cfc3f218cfc862e971ba56b94f6be10 (diff)
downloadrails-b1bc553385524373cab759a64e0bb650afda6d98.tar.gz
rails-b1bc553385524373cab759a64e0bb650afda6d98.tar.bz2
rails-b1bc553385524373cab759a64e0bb650afda6d98.zip
Remove TODO.
-rw-r--r--actionpack/test/journey/router_test.rb12
1 files changed, 1 insertions, 11 deletions
diff --git a/actionpack/test/journey/router_test.rb b/actionpack/test/journey/router_test.rb
index 1a2106a3c5..f298808be8 100644
--- a/actionpack/test/journey/router_test.rb
+++ b/actionpack/test/journey/router_test.rb
@@ -4,18 +4,10 @@ require 'abstract_unit'
module ActionDispatch
module Journey
class TestRouter < ActiveSupport::TestCase
- # TODO : clean up routing tests so we don't need this hack
- class StubDispatcher < Routing::RouteSet::Dispatcher
- def initialize
- super({})
- end
- def dispatcher?; true; end
- end
-
attr_reader :routes
def setup
- @app = StubDispatcher.new
+ @app = Routing::RouteSet::Dispatcher.new({})
@routes = Routes.new
@router = Router.new(@routes)
@formatter = Formatter.new(@routes)
@@ -566,8 +558,6 @@ module ActionDispatch
end
end
- RailsEnv = Struct.new(:env)
-
def rails_env env, klass = ActionDispatch::Request
klass.new env
end