X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6e2c9ce25802db2e740c72ade9ecbe191a966b32..c8d4e4eee3835e9b92fe7cb62c22a07fa2f95f5d:/test/functional/site_controller_test.rb diff --git a/test/functional/site_controller_test.rb b/test/functional/site_controller_test.rb index 47bc27806..145805c01 100644 --- a/test/functional/site_controller_test.rb +++ b/test/functional/site_controller_test.rb @@ -72,7 +72,20 @@ class SiteControllerTest < ActionController::TestCase assert_template 'index' assert_site_partials end - + + def test_index_redirect + get :index, :lat => 4, :lon => 5 + assert_redirected_to :controller => :site, :action => 'index', :anchor => '5/4/5' + + get :index, :lat => 4, :lon => 5, :zoom => 3 + assert_redirected_to :controller => :site, :action => 'index', :anchor => '3/4/5' + end + + def test_permalink + get :permalink, :code => 'wBz3--' + assert_redirected_to :controller => :site, :action => 'index', :anchor => '3/4.8779296875/3.955078125' + end + # Get the edit page def test_edit get :edit