a11yist/test/system/admin/backups_test.rb

12 lines
214 B
Ruby
Raw Normal View History

2024-09-05 22:54:38 +02:00
# frozen_string_literal: true
2024-07-24 01:48:27 +02:00
2024-09-05 22:54:38 +02:00
require "application_system_test_case"
module Admin
class BackupsTest < ApplicationSystemTestCase
test "should create backup" do
visit admin_backup_url
end
2024-07-24 01:48:27 +02:00
end
end