mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 19:55:10 +00:00
13 lines
294 B
Ruby
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
|