]> git.openstreetmap.org Git - rails.git/blob - test/controllers/users/heatmaps_controller_test.rb
Move heatmap to Turbo frame
[rails.git] / test / controllers / users / heatmaps_controller_test.rb
1 require "test_helper"
2
3 module Users
4   class HeatmapsControllerTest < ActionDispatch::IntegrationTest
5     ##
6     # test all routes which lead to this controller
7     def test_routes
8       assert_routing(
9         { :path => "/user/username/heatmap", :method => :get },
10         { :controller => "users/heatmaps", :action => "show", :user_display_name => "username" }
11       )
12     end
13   end
14 end