l4d.tools/test/controllers/job_logs_controller_test.rb
2026-01-18 18:50:31 +01:00

13 lines
270 B
Ruby

require "test_helper"
class JobLogsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get job_logs_index_url
assert_response :success
end
test "should get show" do
get job_logs_show_url
assert_response :success
end
end