stadtratmonitor/test/integration/routes_test.rb
2016-04-10 14:48:04 +02:00

8 lines
No EOL
270 B
Ruby

require 'test_helper'
class RoutesTest < ActionDispatch::IntegrationTest
test "route test" do
assert_generates "/import", { :controller => "import", :action => "new_papers_callback" }
assert_generates "/", :controller => "search", :action => "index"
end
end