Redirect lat/lon/zoom query params to hash
This commit is contained in:
parent
57e711d343
commit
c8d4e4eee3
2 changed files with 25 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue