ぼざクリ タグ広場 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
554 B

  1. require "test_helper"
  2. class UserIpsControllerTest < ActionDispatch::IntegrationTest
  3. test "should get index" do
  4. get user_ips_index_url
  5. assert_response :success
  6. end
  7. test "should get show" do
  8. get user_ips_show_url
  9. assert_response :success
  10. end
  11. test "should get create" do
  12. get user_ips_create_url
  13. assert_response :success
  14. end
  15. test "should get update" do
  16. get user_ips_update_url
  17. assert_response :success
  18. end
  19. test "should get destroy" do
  20. get user_ips_destroy_url
  21. assert_response :success
  22. end
  23. end