it 'allows any organization_id' do
          user = User.create! valid_attributes_for_admin
          put :update, {id: user.to_param, user: new_attributes_for_admin}
          expect(user.reload.email).to eq('foe@example.com')
          expect(assigns(:user)).to eq(user)