a11yist/test/controllers/admin/backups_controller_test.rb
david fd42a3f173
Some checks failed
/ Checkout (push) Successful in 1m39s
/ Run tests (push) Successful in 1m14s
/ Run system tests (push) Failing after 1m40s
/ Build, push and deploy image (push) Successful in 12s
backups
2024-07-24 01:48:27 +02:00

8 lines
208 B
Ruby

require 'test_helper'
class Admin::BackupsControllerTest < ActionDispatch::IntegrationTest
test 'should show admin_backup' do
get admin_backup_url(@admin_backup)
assert_response :success
end
end