1 # frozen_string_literal: true
 
   5 class BrowseControllerTest < ActionDispatch::IntegrationTest
 
   7   # test all routes which lead to this controller
 
  10       { :path => "/query", :method => :get },
 
  11       { :controller => "feature_queries", :action => "show" }
 
  16     get feature_query_path
 
  17     assert_response :success
 
  18     assert_template "feature_queries/show"