diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-11-23 19:25:39 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-11-23 19:25:39 -0600 |
commit | 350d3daa8825ac2049a306506b14193f0896e8ff (patch) | |
tree | 8aab06ce19e956ee0ba0cab4a5f411079dc41865 /actionpack/test/controller | |
parent | 01c9f99c5370031fcce32931d45b4ca3070cbb3d (diff) | |
download | rails-350d3daa8825ac2049a306506b14193f0896e8ff.tar.gz rails-350d3daa8825ac2049a306506b14193f0896e8ff.tar.bz2 rails-350d3daa8825ac2049a306506b14193f0896e8ff.zip |
Remove inflection reloads routes test
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/routing_test.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb index 4eaf309c41..a2fdbfbbbe 100644 --- a/actionpack/test/controller/routing_test.rb +++ b/actionpack/test/controller/routing_test.rb @@ -1762,13 +1762,6 @@ class RouteLoadingTest < Test::Unit::TestCase 2.times { routes.reload! } end - def test_adding_inflections_forces_reload - ActiveSupport::Inflector::Inflections.instance.expects(:uncountable).with('equipment') - routes.expects(:reload!) - - ActiveSupport::Inflector.inflections { |inflect| inflect.uncountable('equipment') } - end - def test_load_with_configuration routes.configuration_files.clear routes.add_configuration_file("foobarbaz") |