mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 06:34:46 +02:00
13 lines
No EOL
280 B
Ruby
13 lines
No EOL
280 B
Ruby
require 'test_helper'
|
|
|
|
class AdminAreaInvoicesIntegrationTest < ApplicationIntegrationTest
|
|
setup do
|
|
@invoice = invoices(:one)
|
|
sign_in users(:admin)
|
|
end
|
|
|
|
def test_download_invoice_pdf
|
|
get admin_invoice_download_pdf_path(@invoice)
|
|
assert_response :ok
|
|
end
|
|
end |