aboutsummaryrefslogtreecommitdiff
path: root/test/controllers/que_jobs_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/que_jobs_controller_test.rb')
-rw-r--r--test/controllers/que_jobs_controller_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/controllers/que_jobs_controller_test.rb b/test/controllers/que_jobs_controller_test.rb
new file mode 100644
index 0000000..691d0f3
--- /dev/null
+++ b/test/controllers/que_jobs_controller_test.rb
@@ -0,0 +1,14 @@
+require 'test_helper'
+
+class QueJobsControllerTest < ActionDispatch::IntegrationTest
+ test "should get cancel" do
+ get que_jobs_cancel_url
+ assert_response :success
+ end
+
+ test "should get retry_now" do
+ get que_jobs_retry_now_url
+ assert_response :success
+ end
+
+end