]> git.openstreetmap.org Git - rails.git/commitdiff
Add some missing route tests for the site controller
authorTom Hughes <tom@compton.nu>
Mon, 30 Dec 2019 22:37:24 +0000 (22:37 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 30 Dec 2019 22:37:24 +0000 (22:37 +0000)
test/controllers/site_controller_test.rb

index a798013dbe40e5a5b8e6ee6084a5cb824ad4cc7e..e18cc04f9f8e6ba12670b5f134b3f9cf452ee3ca 100644 (file)
@@ -54,6 +54,18 @@ class SiteControllerTest < ActionController::TestCase
       { :path => "/fixthemap", :method => :get },
       { :controller => "site", :action => "fixthemap" }
     )
+    assert_routing(
+      { :path => "/help", :method => :get },
+      { :controller => "site", :action => "help" }
+    )
+    assert_routing(
+      { :path => "/about", :method => :get },
+      { :controller => "site", :action => "about" }
+    )
+    assert_routing(
+      { :path => "/about/locale", :method => :get },
+      { :controller => "site", :action => "about", :about_locale => "locale" }
+    )
     assert_routing(
       { :path => "/export", :method => :get },
       { :controller => "site", :action => "export" }