Files
danbooru/test/functional/delayed_jobs_controller_test.rb
2017-02-06 18:48:35 -06:00

13 lines
262 B
Ruby

require 'test_helper'
class DelayedJobsControllerTest < ActionController::TestCase
context "The delayed jobs controller" do
context "index action" do
should "render" do
get :index
assert_response :success
end
end
end
end