mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
8 lines
270 B
Ruby
8 lines
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
|