stadtratmonitor/test/integration/routes_test.rb

8 lines
270 B
Ruby
Raw Normal View History

2016-04-10 14:48:04 +02:00
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