13 lines
248 B
Ruby
13 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "application_system_test_case"
|
|
|
|
module Admin
|
|
class BackupsTest < ApplicationSystemTestCase
|
|
test "should create backup" do
|
|
visit admin_backup_url
|
|
|
|
assert(page.body.size > 0)
|
|
end
|
|
end
|
|
end
|