1 # frozen_string_literal: true
 
   5 class DirectionsControllerTest < ActionDispatch::IntegrationTest
 
   7   # test all routes which lead to this controller
 
  10       { :path => "/directions", :method => :get },
 
  11       { :controller => "directions", :action => "show" }
 
  17     assert_response :success
 
  22     assert_dom "svg>symbol[id*='-right']"
 
  23     assert_dom "svg>symbol[id*='-left']"
 
  24     assert_dom "svg>symbol[id*='-straight']"