ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
578 B

  1. require "test_helper"
  2. class IpAddressesControllerTest < ActionDispatch::IntegrationTest
  3. test "should get index" do
  4. get ip_addresses_index_url
  5. assert_response :success
  6. end
  7. test "should get show" do
  8. get ip_addresses_show_url
  9. assert_response :success
  10. end
  11. test "should get create" do
  12. get ip_addresses_create_url
  13. assert_response :success
  14. end
  15. test "should get update" do
  16. get ip_addresses_update_url
  17. assert_response :success
  18. end
  19. test "should get destroy" do
  20. get ip_addresses_destroy_url
  21. assert_response :success
  22. end
  23. end