1 # frozen_string_literal: true
 
   5 class LayersPanesControllerTest < ActionDispatch::IntegrationTest
 
   7   # test all routes which lead to this controller
 
  10       { :path => "/panes/layers", :method => :get },
 
  11       { :controller => "layers_panes", :action => "show" }
 
  16     get layers_pane_path, :xhr => true
 
  18     assert_response :success
 
  19     assert_template "layers_panes/show"
 
  20     assert_template :layout => false