12 lines
261 B
Ruby
12 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
module Admin
|
|
class BackupsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should show admin_backup" do
|
|
get admin_backup_url(@admin_backup)
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|