Files
danbooru/test/functional/delayed_jobs_controller_test.rb
2020-03-30 12:36:06 -05:00

14 lines
307 B
Ruby

require 'test_helper'
class DelayedJobsControllerTest < ActionDispatch::IntegrationTest
context "The delayed jobs controller" do
context "index action" do
should "render" do
create(:delayed_job)
get delayed_jobs_path
assert_response :success
end
end
end
end