9 lines
208 B
Ruby
9 lines
208 B
Ruby
|
|
require 'test_helper'
|
||
|
|
|
||
|
|
class Admin::BackupsControllerTest < ActionDispatch::IntegrationTest
|
||
|
|
test 'should show admin_backup' do
|
||
|
|
get admin_backup_url(@admin_backup)
|
||
|
|
assert_response :success
|
||
|
|
end
|
||
|
|
end
|