invoice_keeper/test/controllers/invoices_controller_test.rb

10 lines
182 B
Ruby

require 'test_helper'
class InvoicesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get invoices_index_url
assert_response :success
end
end