13 lines
274 B
Ruby
13 lines
274 B
Ruby
require "test_helper"
|
|
|
|
class AddressesControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get index" do
|
|
get addresses_index_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get show" do
|
|
get addresses_show_url
|
|
assert_response :success
|
|
end
|
|
end
|