a11yist/test/system/admin/backups_test.rb

14 lines
248 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
2024-09-11 22:43:26 +02:00
assert(page.body.size > 0)
2024-09-05 22:54:38 +02:00
end
2024-07-24 01:48:27 +02:00
end
end