a11yist/test/system/admin/backups_test.rb
david 6e1a17281d
Some checks failed
/ Run tests (push) Failing after 55s
/ Run system tests (push) Failing after 55s
/ Build, push and deploy image (push) Has been skipped
Fix tests
2024-09-22 22:49:53 +02:00

21 lines
325 B
Ruby

# frozen_string_literal: true
require "application_system_test_case"
module Admin
class BackupsTest < ApplicationSystemTestCase
setup do
login_test
end
teardown do
logout
end
test "should create backup" do
visit admin_backup_url
assert(page.body.size > 0)
end
end
end