require "test_helper" class StorageLocationsControllerTest < ActionDispatch::IntegrationTest test "should get index" do get storage_locations_index_url assert_response :success end test "should get show" do get storage_locations_show_url assert_response :success end test "should get create" do get storage_locations_create_url assert_response :success end test "should get destroy" do get storage_locations_destroy_url assert_response :success end end