13 lines
270 B
Ruby
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
|