a11yist/test/system/admin/backups_test.rb

22 lines
325 B
Ruby
Raw Permalink 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
2024-09-22 22:49:53 +02:00
setup do
login_test
end
teardown do
logout
end
2024-09-05 22:54:38 +02:00
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