theseus/test/controllers/customs_receipts_controller_test.rb
2025-05-31 23:25:41 -04:00

13 lines
294 B
Ruby

require "test_helper"
class CustomsReceiptsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get customs_receipts_index_url
assert_response :success
end
test "should get show" do
get customs_receipts_show_url
assert_response :success
end
end